fix(presence-service): set rootDir=../.. to match monorepo dist path structure
entrypoint.sh expects dist/services/presence-service/src/main.js but without rootDir, tsc infers rootDir=src/ giving dist/main.js. Setting rootDir=../.. (packages/ level) produces the correct nested path dist/services/presence-service/src/main.js consistent with other services. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
418a9b4196
commit
dd3abb3e67
|
|
@ -9,6 +9,7 @@
|
|||
"target": "ES2021",
|
||||
"sourceMap": true,
|
||||
"outDir": "./dist",
|
||||
"rootDir": "../..",
|
||||
"baseUrl": "./",
|
||||
"incremental": true,
|
||||
"skipLibCheck": true,
|
||||
|
|
|
|||
Loading…
Reference in New Issue