express initialized with demo endpoint

This commit is contained in:
j-weissen 2022-11-29 23:52:54 +01:00
parent ca9f480026
commit fc3a4b31c1
4 changed files with 357 additions and 6 deletions

11
backend/api/tsconfig.json Normal file
View file

@ -0,0 +1,11 @@
{
"compilerOptions": {
"esModuleInterop": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ES2020",
"sourceMap": true,
"outDir": "build"
},
"include": ["src/**/*"]
}