wikipedia-game-solver/packages/config-typescript/tsconfig.json
Théo LUDWIG 624d235a0e
All checks were successful
Chromatic / chromatic (push) Successful in 2m4s
CI / ci (push) Successful in 3m39s
CI / commitlint (push) Successful in 18s
chore: fix types
2024-07-27 11:20:23 +02:00

20 lines
474 B
JSON

{
"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,
"skipLibCheck": true,
"jsx": "preserve"
}
}