updated dockerfile for custom server.js file

This commit is contained in:
biersoeckli
2024-11-18 10:33:09 +00:00
parent a8cec77112
commit a24236ebd4
7 changed files with 90 additions and 10 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"moduleResolution": "node",
"module": "commonjs",
"outDir": "dist",
"lib": [
"ES2023"
],
"target": "ES2023",
"isolatedModules": false,
"noEmit": false
},
"include": [
"src/server.ts"
]
}