mirror of
https://github.com/eyaltoledano/claude-task-master.git
synced 2025-11-12 16:15:43 +00:00
Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
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'
|
|
]
|
|
}
|
|
}
|
|
});
|