- MCP server infrastructure with Express and SSE transport - Repository management for BabylonJS repos (Documentation, Babylon.js, havok) - Comprehensive test suite with 100% coverage (87 tests passing) - All code meets standards (files <100 lines, functions <20 lines) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
33 lines
670 B
TypeScript
33 lines
670 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'node',
|
|
exclude: [
|
|
'**/node_modules/**',
|
|
'**/dist/**',
|
|
'**/data/**',
|
|
'**/.{idea,git,cache,output,temp}/**',
|
|
],
|
|
coverage: {
|
|
provider: 'v8',
|
|
reporter: ['text', 'json', 'html'],
|
|
exclude: [
|
|
'node_modules/',
|
|
'dist/',
|
|
'**/*.test.ts',
|
|
'**/__tests__/',
|
|
'vitest.config.ts',
|
|
],
|
|
thresholds: {
|
|
lines: 80,
|
|
functions: 80,
|
|
branches: 75,
|
|
statements: 80,
|
|
},
|
|
},
|
|
setupFiles: ['./src/__tests__/setup.ts'],
|
|
},
|
|
});
|