1
0
Fork 0
mirror of https://github.com/Findus23/lw1.at.git synced 2024-09-16 12:13:44 +02:00
lw1.at/tsconfig.json

24 lines
655 B
JSON
Raw Permalink Normal View History

2020-12-21 14:31:16 +01:00
{
"compilerOptions": {
2023-03-27 23:14:37 +02:00
"target": "ES2020",
2022-04-26 15:40:57 +02:00
"strict": true,
2022-04-24 16:57:44 +02:00
"isolatedModules": true,
"esModuleInterop": true,
"module": "ESNext",
2022-04-26 15:40:57 +02:00
"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"
2020-12-21 14:31:16 +01:00
}
}