fix server build

This commit is contained in:
2022-05-08 01:02:24 +02:00
parent e731cded1e
commit f3b65987dc
3 changed files with 21 additions and 29 deletions

View File

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