mirror of
https://github.com/eyaltoledano/claude-task-master.git
synced 2025-12-24 13:42:13 +00:00
24 lines
397 B
TypeScript
24 lines
397 B
TypeScript
|
|
import { defineConfig } from 'vitest/config';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
test: {
|
||
|
|
globals: true,
|
||
|
|
environment: 'node',
|
||
|
|
coverage: {
|
||
|
|
provider: 'v8',
|
||
|
|
reporter: ['text', 'json', 'html'],
|
||
|
|
exclude: [
|
||
|
|
'node_modules/',
|
||
|
|
'dist/',
|
||
|
|
'tests/',
|
||
|
|
'**/*.test.ts',
|
||
|
|
'**/*.spec.ts',
|
||
|
|
'**/*.d.ts',
|
||
|
|
'**/mocks/**',
|
||
|
|
'**/fixtures/**',
|
||
|
|
'vitest.config.ts'
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|
||
|
|
});
|