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
|
|
|
}
|
|
|
|
}
|