iching-broker-level3/tsconfig.backend.json

19 lines
931 B
JSON
Raw Normal View History

2025-04-10 08:21:29 +00:00
{
2025-04-10 12:36:39 +00:00
"extends": "./tsconfig.json", // Falls du eine allgemeine tsconfig hast
2025-04-10 08:21:29 +00:00
"compilerOptions": {
2025-04-10 12:36:39 +00:00
"outDir": "./dist/backend", // Zielordner für die kompilierte Backend-Dateien
2025-04-10 13:33:20 +00:00
"rootDir": "./backend",
2025-04-10 12:36:39 +00:00
"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)
2025-04-10 13:33:20 +00:00
"emitDeclarationOnly": true,
"composite": true
2025-04-10 08:21:29 +00:00
},
2025-04-10 12:36:39 +00:00
"include": [
"backend/**/*.ts" // Nur Dateien im backend-Ordner kompilieren
]
2025-04-10 13:33:20 +00:00
}