Files
tasq/node_modules/@claude-flow/mcp/vitest.config.ts
T
2026-04-09 19:01:53 +08:00

14 lines
268 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: ['__tests__/**/*.test.ts'],
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
},
},
});