Replace HapiJs with NestJs as API framework

Change-Id: I54dc6c5f6377358e4f6614378fbb253b0c7841a9
This commit is contained in:
Roman Jaroš 2023-09-12 21:11:03 +02:00
parent 4453fe7933
commit 6ea4c9022d
32 changed files with 241 additions and 229 deletions

24
source/__/.tsconfig.json Normal file
View file

@ -0,0 +1,24 @@
{
"compilerOptions": {
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"sourceMap": true,
"esModuleInterop": true,
"allowJs": true,
"outDir": "build",
"module": "commonjs",
"target": "es6",
"lib": [
"es6",
"dom"
],
},
"exclude": [
"./node_modules",
"./src/**/__tests__/*.tsx"
]
}