server/tsconfig.json

46 lines
1.4 KiB
JSON
Raw Normal View History

2023-09-11 05:31:08 +02:00
{
2024-04-07 07:30:49 +02:00
"compilerOptions": {
"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,
"module": "preserve",
"moduleResolution": "bundler",
"noUncheckedSideEffectImports": true,
"resolveJsonModule": true,
2024-04-07 07:30:49 +02:00
"noEmit": true,
"allowJs": false,
// Soon...
//"erasableSyntaxOnly": true,
"forceConsistentCasingInFileNames": true,
//"isolatedDeclarations": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"target": "ESNext",
"jsx": "preserve",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
2024-04-07 07:30:49 +02:00
"composite": true,
"incremental": true,
2024-04-07 07:30:49 +02:00
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": false,
2024-04-07 07:30:49 +02:00
"paths": {
"@/*": ["./utils/*"],
"~/*": ["./*"],
"+/*": ["./api/*"]
}
2024-04-07 07:30:49 +02:00
},
"exclude": ["node_modules"],
"include": ["*.ts", "*.d.ts", "**/*.ts", "**/*.d.ts"]
2023-09-11 05:31:08 +02:00
}