2023-09-11 05:31:08 +02:00
|
|
|
{
|
2024-04-07 07:30:49 +02:00
|
|
|
"compilerOptions": {
|
2025-05-23 17:29:27 +02:00
|
|
|
"alwaysStrict": true,
|
|
|
|
|
"exactOptionalPropertyTypes": false,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noImplicitThis": true,
|
|
|
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
|
|
|
"noUncheckedIndexedAccess": false,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"useUnknownInCatchVariables": true,
|
|
|
|
|
|
2024-04-07 07:30:49 +02:00
|
|
|
"allowImportingTsExtensions": true,
|
2025-05-23 17:29:27 +02:00
|
|
|
"module": "preserve",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"noUncheckedSideEffectImports": true,
|
|
|
|
|
"resolveJsonModule": true,
|
2024-04-07 07:30:49 +02:00
|
|
|
"noEmit": true,
|
2025-05-23 17:29:27 +02:00
|
|
|
"allowJs": false,
|
|
|
|
|
// Soon...
|
|
|
|
|
//"erasableSyntaxOnly": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
//"isolatedDeclarations": true,
|
|
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
|
"moduleDetection": "force",
|
2025-05-26 19:00:24 +02:00
|
|
|
"target": "ESNext",
|
2025-05-23 17:29:27 +02:00
|
|
|
"jsx": "preserve",
|
|
|
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
2024-04-07 07:30:49 +02:00
|
|
|
"composite": true,
|
2025-05-23 17:29:27 +02:00
|
|
|
"incremental": true,
|
2024-04-07 07:30:49 +02:00
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"experimentalDecorators": true,
|
2025-05-23 17:29:27 +02:00
|
|
|
"emitDecoratorMetadata": false,
|
2024-04-07 07:30:49 +02:00
|
|
|
"paths": {
|
2024-05-29 02:59:49 +02:00
|
|
|
"@/*": ["./utils/*"],
|
|
|
|
|
"~/*": ["./*"],
|
2024-08-27 16:37:23 +02:00
|
|
|
"+/*": ["./api/*"]
|
2025-05-23 17:29:27 +02:00
|
|
|
}
|
2024-04-07 07:30:49 +02:00
|
|
|
},
|
2024-06-20 01:21:02 +02:00
|
|
|
"exclude": ["node_modules"],
|
2025-05-23 17:29:27 +02:00
|
|
|
"include": ["*.ts", "*.d.ts", "**/*.ts", "**/*.d.ts"]
|
2023-09-11 05:31:08 +02:00
|
|
|
}
|