Files
callstack__agent-device/tsconfig.json
Michał Pierzchała 919c478013 perf(typecheck): make the root tsc project incremental (#1957)
tsc -b packages/* already caches via composite builds; the root
tsc -p tsconfig.json re-checked everything from scratch on every run.
With incremental + a gitignored .tmp build-info file, a repeat
typecheck drops from 2.0s to 0.4s wall (measured on a warm machine);
cold runs are unchanged. *.tsbuildinfo and .tmp/ are already ignored.
2026-08-22 11:05:30 +02:00

23 lines
644 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"noUncheckedIndexedAccess": true,
"isolatedModules": true,
"resolveJsonModule": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noEmit": true,
"incremental": true,
"tsBuildInfoFile": ".tmp/tsconfig.tsbuildinfo",
"allowImportingTsExtensions": true,
"erasableSyntaxOnly": true,
"rewriteRelativeImportExtensions": true,
"verbatimModuleSyntax": true,
"types": ["node"]
},
"include": ["src", "test", "scripts/help-conformance-command-validator.ts"]
}