mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2025-05-13 23:22:49 +02:00
38 lines
957 B
JSON
38 lines
957 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"outDir": "./build",
|
|
"rootDir": "./cli",
|
|
"checkJs": false,
|
|
"exactOptionalPropertyTypes": false,
|
|
|
|
"strict": true,
|
|
"allowUnusedLabels": false,
|
|
"allowUnreachableCode": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"erasableSyntaxOnly": true,
|
|
|
|
"verbatimModuleSyntax": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"allowImportingTsExtensions": false,
|
|
"skipLibCheck": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"noEmit": true,
|
|
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true
|
|
},
|
|
"exclude": ["node_modules", "challenges", "templates", "temp", "tmp"]
|
|
}
|