wikipedia-game-solver/packages/config-typescript/tsconfig.json

26 lines
654 B
JSON
Raw Normal View History

2024-07-24 12:35:33 +02:00
{
"compilerOptions": {
"strict": true,
2024-08-09 23:52:02 +02:00
"strictBindCallApply": true,
"strictFunctionTypes": true,
2024-07-24 12:35:33 +02:00
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
2024-08-09 23:52:02 +02:00
"noImplicitThis": true,
"noImplicitAny": true,
2024-07-24 12:35:33 +02:00
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
2024-08-09 23:52:02 +02:00
"verbatimModuleSyntax": true,
2024-07-24 12:35:33 +02:00
"isolatedModules": true,
"esModuleInterop": true,
2024-07-27 11:20:23 +02:00
"skipLibCheck": true,
"jsx": "preserve",
"incremental": true
2024-07-24 12:35:33 +02:00
}
}