Files
ai-agent/frontend/tsconfig.json
Gabriel Vidal e66e15ebf1 feat(ai-agent): self-hosted CLAUDE.md + skills viewer/editor
New service at ai-agent.lab.gabvdl.xyz (Authelia auth): a single Docker
image with a FastAPI backend that reads/writes the repo's CLAUDE.md files
and .claude/skills tree, plus a mobile/offline-first React PWA frontend
(shadcn + lucide + zustand). Left file-tree panel (swipe to close) with
per-markdown token estimates (word-count to chars/4 range) and a running
total; offline indicator (flashing crossed-wifi); bundle cached to
localStorage for offline use.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-23 21:58:04 +02:00

24 lines
595 B
JSON

{
"compilerOptions": {
"target": "ES2021",
"useDefineForClassFields": true,
"lib": ["ES2021", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": ".",
"paths": { "@/*": ["src/*"] }
},
"include": ["src"]
}