add http-server part 6.4
All checks were successful
ci / build (push) Successful in 1m6s

This commit is contained in:
Christopher Hase 2025-04-10 15:33:20 +02:00
parent 780d96aa0c
commit c5801c4e7a

View file

@ -2,6 +2,7 @@
"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
@ -9,7 +10,8 @@
"allowSyntheticDefaultImports": true, // Synthetische Default-Imports erlauben
"allowImportingTsExtensions": true,
"skipLibCheck": true, // Bibliotheken werden nicht überprüft (Optional)
"noEmit": true
"emitDeclarationOnly": true,
"composite": true
},
"include": [
"backend/**/*.ts" // Nur Dateien im backend-Ordner kompilieren