Files
nanobot/webui/websocket-debug/tsconfig.json
T
Jack Lu a1ec7b192a feat(channels): WebSocket server channel, debug UI, and logging
Add WebSocket server channel for outbound push, a Vite/React debugging
interface under webui/websocket-debug, and refine log wording.

Made-with: Cursor
2026-04-08 21:35:29 +08:00

21 lines
509 B
JSON

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