2024-04-27 10:40:14 +02:00
|
|
|
{
|
|
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
|
|
|
"compilerOptions": {
|
2024-12-01 10:07:35 +01:00
|
|
|
// Typechecking
|
|
|
|
|
"strict": true,
|
2024-04-27 10:40:14 +02:00
|
|
|
"allowUnreachableCode": false,
|
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
2024-12-01 10:07:35 +01:00
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
|
|
|
|
|
// Modules
|
|
|
|
|
"module": "ES2022",
|
|
|
|
|
"moduleResolution": "Bundler",
|
2024-04-27 10:40:14 +02:00
|
|
|
"resolveJsonModule": true,
|
2024-12-01 10:07:35 +01:00
|
|
|
|
|
|
|
|
// Emit
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
|
|
|
|
|
// JavaScript Support
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"checkJs": true,
|
|
|
|
|
|
|
|
|
|
// Interop Constraints
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
|
|
|
|
|
// Language and Environment
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
|
|
|
|
|
|
|
|
|
// Completeness
|
|
|
|
|
"skipLibCheck": true
|
|
|
|
|
}
|
2024-04-27 10:40:14 +02:00
|
|
|
}
|