mirror of
https://github.com/callstack/agent-device.git
synced 2026-09-14 20:06:34 +08:00
136d313a19
* build: enable noUncheckedIndexedAccess * refactor: remove redundant indexed access fallbacks * fix: address rebased unchecked indexed access * fix: address unchecked access review feedback * refactor: simplify replay fill positional typing * refactor: avoid wait positional assertion * refactor: prefer value guards for indexed access * chore: keep fallow baseline for strictness changes
20 lines
487 B
JSON
20 lines
487 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"isolatedModules": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"erasableSyntaxOnly": true,
|
|
"rewriteRelativeImportExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src", "test"]
|
|
}
|