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