vite/vitest.config.ts
2022-12-04 08:19:06 +01:00

17 lines
291 B
TypeScript

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