server migration to TypeScript

This commit is contained in:
2022-01-30 00:53:08 +01:00
parent 7d745ec4cc
commit 9dcfade3fd
18 changed files with 346 additions and 133 deletions

17
tsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
"outDir": "./dist",
"allowJs": true,
"target": "ES2018",
"module": "commonjs",
"esModuleInterop": true,
"strict": false,
"noEmit": false
},
"exclude": [
"node_modules"
],
"include": [
"./server/src/**/*"
]
}