vite/vitest.config.ts
2022-05-09 09:36:14 +02:00

16 lines
263 B
TypeScript

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