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

20 lines
474 B
JSON
Raw Normal View History

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