mirror of
https://github.com/vitejs/vite.git
synced 2024-11-21 14:48:41 +00:00
17 lines
287 B
TypeScript
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'
|
|
}
|
|
})
|