for docker

This commit is contained in:
simonredfern 2025-12-10 13:35:56 +01:00
parent 6d3c2a4806
commit 9b14179d33

View File

@ -1,15 +1,16 @@
{
"compilerOptions": {
"module": "commonjs",
"module": "ES2020",
"moduleResolution": "node",
"esModuleInterop": true,
"target": "ES2020",
"outDir": "dist-server",
"rootDir": "server",
"rootDir": ".",
"resolveJsonModule": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowJs": true
},
"exclude": ["src", "server/test"],
"include": ["server"]
"exclude": ["src", "server/test", "node_modules"],
"include": ["server", "shared-constants.ts"]
}