2024-07-30 23:59:06 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noImplicitReturns": true,
|
2024-09-11 23:53:26 +02:00
|
|
|
"noImplicitThis": true,
|
|
|
|
"noImplicitAny": true,
|
2024-07-30 23:59:06 +02:00
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
2024-09-11 23:53:26 +02:00
|
|
|
"verbatimModuleSyntax": true,
|
2024-07-30 23:59:06 +02:00
|
|
|
"isolatedModules": true,
|
|
|
|
"esModuleInterop": true,
|
2024-09-11 23:53:26 +02:00
|
|
|
"allowImportingTsExtensions": true,
|
2024-07-30 23:59:06 +02:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"jsx": "preserve",
|
2024-09-11 23:53:26 +02:00
|
|
|
"incremental": true,
|
|
|
|
"noEmit": true,
|
|
|
|
|
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "Bundler",
|
2024-11-09 19:50:22 +01:00
|
|
|
"resolveJsonModule": true
|
2024-07-30 23:59:06 +02:00
|
|
|
}
|
|
|
|
}
|