spb/khaelor Public
KHAELOR — a terminal-native autonomous engineering agent powered by Anthropic.
TypeScript 82.9%
HTML 14.9%
CSS 1.1%
JavaScript 0.7%
1{2 // KHAELOR3 // File: prototypes/tui-spike/tsconfig.json4 // Description: TypeScript configuration for the ADR-14 renderer spike (run via tsx).5 //6 // Author: Simon-Pierre Boucher7 // Contact: contact@spboucher.ai8 "compilerOptions": {9 "target": "ES2022",10 "module": "ESNext",11 "moduleResolution": "Bundler",12 "jsx": "react-jsx",13 "strict": true,14 "esModuleInterop": true,15 "skipLibCheck": true,16 "noEmit": true,17 "types": ["node"]18 },19 "include": ["shared/**/*", "candidate-a/**/*", "candidate-b/**/*", "driver/**/*"]20}21