1
0
Fork 0
mirror of https://github.com/Findus23/lw1.at.git synced 2024-09-07 01:43:45 +02:00
lw1.at/tsconfig.json
2023-03-27 23:14:37 +02:00

23 lines
655 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"strict": true,
"isolatedModules": true,
"esModuleInterop": true,
"module": "ESNext",
"moduleResolution": "Node",
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"importsNotUsedAsValues": "error"
}
}