Files
jordium-gantt-vue3/vitest.config.ts
2025-12-17 18:09:55 +08:00

40 lines
910 B
TypeScript

import { defineConfig } from 'vitest/config'
import vue from '@vitejs/plugin-vue'
import { fileURLToPath } from 'node:url'
export default defineConfig({
plugins: [vue()],
test: {
globals: true,
environment: 'happy-dom',
setupFiles: ['./tests/setup.ts'],
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
exclude: [
'node_modules/',
'tests/',
'demo/',
'npm-demo/',
'npm-webpack-demo/',
'dist/',
'npm-package/',
'**/*.d.ts',
'**/*.config.*',
'**/index.ts', // 导出文件
],
statements: 80,
branches: 75,
functions: 80,
lines: 80,
},
include: ['tests/**/*.{test,spec}.{js,ts}'],
exclude: ['node_modules', 'dist', 'npm-package'],
},
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
})