master
import { defineConfig } from 'vitest/config'
import tsconfigPaths from 'vite-tsconfig-paths'
export default defineConfig({
plugins: [tsconfigPaths({ projects: ['./tsconfig.test.json'] })],
test: {
environment: 'node',
setupFiles: ['./tests/setup.ts'],
fileParallelism: false,
testTimeout: 15_000,
typecheck: {
tsconfig: './tsconfig.test.json',
},
})