A field guide to the faces your coding agents make — kaomoji stats mined from Claude Code & Codex session logs.
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}