mirror of
https://github.com/vitejs/vite.git
synced 2024-11-21 14:48:41 +00:00
19 lines
358 B
TypeScript
19 lines
358 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ['**/__tests__/**/*.spec.[tj]s'],
|
|
exclude: [
|
|
'**/node_modules/**',
|
|
'**/dist/**',
|
|
'./playground/**/*.*',
|
|
'./playground-temp/**/*.*',
|
|
],
|
|
testTimeout: 20000,
|
|
},
|
|
esbuild: {
|
|
target: 'node18',
|
|
},
|
|
publicDir: false,
|
|
})
|