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>
16 lines
337 B
JSON
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"]
|
|
}
|