Files
oh-my-claudecode/tsconfig.json
Alex Urevick-Ackelsberg fd3ea67122 test(benchmark): add vitest scoring tests and update agent count to 22
- Add benchmark-scoring.test.ts with 84 tests for parser, scorer, reporter
- Update agent registry count from 21 to 22 in agent-registry and cleanup tests
- Add harsh-critic to omcSystemPrompt coordination section
- Exclude benchmark test from tsc build (vitest handles its own TS)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-03 06:56:49 -05:00

22 lines
547 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2023"],
"types": ["node"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"resolveJsonModule": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "src/__tests__/benchmark-scoring.test.ts"]
}