This commit is contained in:
parent
780d96aa0c
commit
c5801c4e7a
1 changed files with 4 additions and 2 deletions
|
@ -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
|
||||||
]
|
]
|
||||||
}
|
}
|
Loading…
Reference in a new issue