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