Files
pi/tsconfig.json
EislM0203andClaude Opus 4.7 b8dbb25c17 Add /subagent-runs live monitoring panel
Extract run execution from index.ts into runner.ts, add an in-memory
RunRegistry shared between the subagent tool and a new /subagent-runs
command, give each run its own AbortController for per-run cancellation,
and add the runs-panel.ts monitor with a live-refresh timer. Also adds
TypeScript type-checking (tsconfig.json + typecheck script) so the
refactor has an automated safety net.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-14 21:14:46 +02:00

16 lines
337 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ES2023"],
"types": ["node"],
"strict": true,
"noEmit": true,
"skipLibCheck": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true
},
"include": ["extensions/**/*.ts"]
}