vite/vitest.config.ts

16 lines
263 B
TypeScript
Raw Normal View History

import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
exclude: [
'**/node_modules/**',
'**/dist/**',
2022-05-09 07:36:14 +00:00
'./playground/**/*.*',
'./playground-temp/**/*.*'
]
},
esbuild: {
target: 'node14'
}
})