forked from bots-garden/ori
| ✨ Introduce new feature(s): ACP web client — Go backend (agent, bridge, httpserver, mockagent) + React SPA (Zed-like agent panel), tests, quality gate PASS | 1 | { |
| 2 | "compilerOptions": { | |
| 3 | "target": "ES2022", | |
| 4 | "lib": ["ES2022", "DOM", "DOM.Iterable"], | |
| 5 | "module": "ESNext", | |
| 6 | "moduleResolution": "bundler", | |
| 7 | "jsx": "react-jsx", | |
| 8 | "strict": true, | |
| 9 | "noUnusedLocals": true, | |
| 10 | "noUnusedParameters": true, | |
| 11 | "noFallthroughCasesInSwitch": true, | |
| 12 | "skipLibCheck": true, | |
| 13 | "isolatedModules": true, | |
| 14 | "noEmit": true, | |
| 15 | "types": ["vitest/globals"] | |
| 16 | }, | |
| 17 | "include": ["src", "vite.config.ts"] | |
| 18 | } |