prospector/web/tsconfig.json
Natalie 14df9e571f feat(web): standalone control panel (kill-switch, activity, held-queue, digest)
@prospector/web — Vite+React, dark mac-window. GO/PAUSE/AWAY kill-switch (dominant,
confirm+optimistic+rollback), digest stat bar with Mac-reachable health, terminal
activity feed, held-queue. Polls the prospector service /api. Added to workspace.
typecheck + build pass.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-28 21:35:08 -04:00

20 lines
501 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"skipLibCheck": true,
"isolatedModules": true,
"resolveJsonModule": true,
"allowImportingTsExtensions": false,
"noEmit": true
},
"include": ["src"]
}