5d3e264cf3
Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
315 B
TypeScript
17 lines
315 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
import { resolve } from 'path'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'node',
|
|
include: ['tests/**/*.test.ts'],
|
|
testTimeout: 240_000,
|
|
fileParallelism: false
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@shared': resolve('src/shared')
|
|
}
|
|
}
|
|
})
|