Split frontend and backend

This commit is contained in:
2020-05-30 17:59:40 +02:00
parent 22e31b51dc
commit 42b558254f
42 changed files with 11604 additions and 0 deletions

15
backend/tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true
},
"exclude": ["node_modules", "dist"]
}