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 "extends": "./tsconfig.json", // Falls du eine allgemeine tsconfig hast
"compilerOptions": { "compilerOptions": {
"outDir": "./dist/backend", // Zielordner für die kompilierte Backend-Dateien "outDir": "./dist/backend", // Zielordner für die kompilierte Backend-Dateien
"rootDir": "./backend",
"module": "NodeNext", // Setze das Modul auf NodeNext "module": "NodeNext", // Setze das Modul auf NodeNext
"moduleResolution": "NodeNext", // NodeNext für die Modulauflösung "moduleResolution": "NodeNext", // NodeNext für die Modulauflösung
"target": "ES2020", // Moderne JavaScript-Syntax verwenden "target": "ES2020", // Moderne JavaScript-Syntax verwenden
@ -9,9 +10,10 @@
"allowSyntheticDefaultImports": true, // Synthetische Default-Imports erlauben "allowSyntheticDefaultImports": true, // Synthetische Default-Imports erlauben
"allowImportingTsExtensions": true, "allowImportingTsExtensions": true,
"skipLibCheck": true, // Bibliotheken werden nicht überprüft (Optional) "skipLibCheck": true, // Bibliotheken werden nicht überprüft (Optional)
"noEmit": true "emitDeclarationOnly": true,
"composite": true
}, },
"include": [ "include": [
"backend/**/*.ts" // Nur Dateien im backend-Ordner kompilieren "backend/**/*.ts" // Nur Dateien im backend-Ordner kompilieren
] ]
} }