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

34 lines
835 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,
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-08-15 15:14:21 +02:00
"allowImportingTsExtensions": true,
2024-07-27 11:20:23 +02:00
"skipLibCheck": true,
"jsx": "preserve",
2024-08-15 15:14:21 +02:00
"incremental": true,
"noEmit": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
2024-08-16 02:50:11 +02:00
"resolveJsonModule": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
2024-07-24 12:35:33 +02:00
}
}