mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
19 lines
416 B
TypeScript
19 lines
416 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
watch: false,
|
|
exclude: ['node_modules', 'fixtures', 'dist', '**/vitest-test-*/**'],
|
|
reporters: ['verbose'],
|
|
testTimeout: 100000,
|
|
pool: 'forks',
|
|
chaiConfig: {
|
|
truncateThreshold: 0,
|
|
},
|
|
typecheck: {
|
|
enabled: true,
|
|
include: ['./tests/configuration-options.test-d.ts'],
|
|
},
|
|
},
|
|
})
|