Switched to NestJS

This commit is contained in:
2022-09-05 09:51:34 +02:00
parent 75e0ad2f6f
commit 87aa032b6b
38 changed files with 3075 additions and 3368 deletions

View File

@@ -1,39 +1,21 @@
{
"compilerOptions": {
"baseUrl": ".",
"sourceRoot": "src",
"module": "commonjs",
"target": "esnext",
"sourceMap": true,
"declaration": false,
"experimentalDecorators": true,
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"moduleResolution": "node",
"isolatedModules": false,
"suppressImplicitAnyIndexErrors": false,
"noImplicitAny": true,
"strictNullChecks": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"newLine": "LF",
"noEmit": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"lib": [
"es7",
"dom",
"ESNext.AsyncIterable"
],
"typeRoots": [
"./node_modules/@types"
]
},
"include": [
"src"
],
"linterOptions": {
"exclude": []
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false
}
}