iching-broker-level2/old.tsconfig.backend.json
Christopher Hase 86c5e96aef
All checks were successful
ci / build (push) Successful in 1m5s
add http-server part 6.5
2025-04-10 15:57:16 +02:00

19 lines
No EOL
931 B
JSON

{
"extends": "./tsconfig.json", // Falls du eine allgemeine tsconfig hast
"compilerOptions": {
"outDir": "./dist/backend", // Zielordner für die kompilierte Backend-Dateien
"rootDir": "./backend",
"module": "NodeNext", // Setze das Modul auf NodeNext
"moduleResolution": "NodeNext", // NodeNext für die Modulauflösung
"target": "ES2020", // Moderne JavaScript-Syntax verwenden
"esModuleInterop": true, // Interoperabilität mit CommonJS- und ES-Modulen
"allowSyntheticDefaultImports": true, // Synthetische Default-Imports erlauben
"allowImportingTsExtensions": true,
"skipLibCheck": true, // Bibliotheken werden nicht überprüft (Optional)
"emitDeclarationOnly": true,
"composite": true
},
"include": [
"backend/**/*.ts" // Nur Dateien im backend-Ordner kompilieren
]
}