vite/vitest.config.ts
2022-05-09 20:49:38 +02:00

17 lines
287 B
TypeScript

import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
exclude: [
'**/node_modules/**',
'**/dist/**',
'./playground/**/*.*',
'./playground-temp/**/*.*'
],
testTimeout: 20000
},
esbuild: {
target: 'node14'
}
})