mirror of
https://github.com/callstack/agent-device.git
synced 2026-09-14 20:06:34 +08:00
919c478013
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.
23 lines
644 B
JSON
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"]
|
|
}
|