mirror of
https://fastgit.cc/github.com/Yeachan-Heo/oh-my-claudecode
synced 2026-04-20 21:00:50 +08:00
- 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>
22 lines
547 B
JSON
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"]
|
|
}
|