feat(backend): bootstrap express app with error handling

This commit is contained in:
2026-05-20 20:36:55 +02:00
parent 59261b3bab
commit d13af79940
7 changed files with 5070 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"module": "NodeNext",
"moduleResolution": "NodeNext"
},
"include": ["src/**/*"]
}