build: fix tsconfig

This commit is contained in:
eneller
2026-02-28 01:19:35 +01:00
parent e64a77a0d7
commit 05090ebb14
9 changed files with 1355 additions and 4 deletions

13
server/tsconfig.json Normal file
View File

@@ -0,0 +1,13 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../dist/out-tsc/server",
"module": "commonjs",
"esModuleInterop": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules"]
}