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 // KHAELOR — tsconfig.json — TypeScript compiler configuration.3 // Author: Simon-Pierre Boucher — Contact: contact@spboucher.ai4 "compilerOptions": {5 "target": "ES2023",6 "module": "NodeNext",7 "moduleResolution": "NodeNext",8 "lib": ["ES2023"],9 "outDir": "dist",10 "rootDir": "src",11 "strict": true,12 "noUncheckedIndexedAccess": true,13 "noImplicitOverride": true,14 "exactOptionalPropertyTypes": true,15 "forceConsistentCasingInFileNames": true,16 "esModuleInterop": true,17 "skipLibCheck": true,18 "declaration": true,19 "sourceMap": true,20 "isolatedModules": true,21 "verbatimModuleSyntax": true22 },23 "include": ["src/**/*"],24 "exclude": ["node_modules", "dist", "references"]25}26