server/tsconfig.json

40 lines
1.1 KiB
JSON
Raw Normal View History

2023-09-11 05:31:08 +02:00
{
2024-04-07 07:30:49 +02:00
"compilerOptions": {
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowImportingTsExtensions": true,
"noEmit": true,
"composite": true,
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"noImplicitAny": true,
"jsx": "preserve",
"allowSyntheticDefaultImports": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"emitDecoratorMetadata": false,
"experimentalDecorators": true,
"verbatimModuleSyntax": true,
"paths": {
"@/*": ["./utils/*"],
"~/*": ["./*"],
"+/*": ["./server/api/*"]
},
"noUnusedLocals": true
2024-04-07 07:30:49 +02:00
},
"include": [
"*.ts",
"*.d.ts",
"**/*.ts",
"**/*.d.ts",
"server/api/well-known/**/*.ts",
"packages/cli/index.mts"
2024-04-07 07:30:49 +02:00
]
2023-09-11 05:31:08 +02:00
}