A field guide to the faces your coding agents make — kaomoji stats mined from Claude Code & Codex session logs.
0

Configure Feed

Select the types of activity you want to include in your feed.

kaostat / tsconfig.json
430 B 17 lines
1{ 2 "compilerOptions": { 3 "lib": ["ESNext", "DOM", "DOM.Iterable"], 4 "target": "ESNext", 5 "module": "ESNext", 6 "moduleResolution": "bundler", 7 "types": ["bun"], 8 "allowImportingTsExtensions": true, 9 "verbatimModuleSyntax": true, 10 "noEmit": true, 11 "strict": true, 12 "skipLibCheck": true, 13 "noUncheckedIndexedAccess": true, 14 "exactOptionalPropertyTypes": false 15 }, 16 "include": ["src", "test"] 17}