Skip to content

Commit e2bb599

Browse files
Copilothotlong
andcommitted
fix: use explicit index.ts paths in tsconfig.json for node16 ESM module resolution
Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
1 parent 1c139b8 commit e2bb599

2 files changed

Lines changed: 10 additions & 9 deletions

File tree

ROADMAP.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,7 @@ These items were deferred during Phase 13 and have been completed:
210210

211211
| Date | From | To | Breaking Changes | Tests |
212212
|------|------|----|-----------------|-------|
213+
| 2026-02-25 | v3.0.8 | v3.0.8 | None (Phase 15: Fixed tsconfig.json path aliases for node16 ESM module resolution — changed directory paths to explicit index.ts files) | 3813 ✅ |
213214
| 2026-02-21 | v3.0.8 | v3.0.8 | None (Phase 15 continued: Structured pino logging across 154 files, CacheManager test isolation, db.ts deprecation annotations, emoji removal from logs) | 3813 ✅ |
214215
| 2026-02-21 | v3.0.8 | v3.0.8 | None (Phase 15: Repository quality improvements — hook `any` type migration, CI typecheck, ESLint version alignment, documentation updates, code-quality workflow fixes) | 3799 ✅ |
215216
| 2027-02-21 | v3.0.8 | v3.0.8 | None (Phase 14 complete: Activity Feed/Chatter across 6 clouds, 4 Interface Builder blank pages, Dashboard headers & global filters on 6 clouds, ViewTabs on 18 views, Feed API 8 endpoints, Feed service contract, System metadata, Studio builder configs, Navigation areas, 327 new tests) | 3707 ✅ |

tsconfig.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
"sourceMap": true,
1515
"baseUrl": ".",
1616
"paths": {
17-
"@hotcrm/ai": ["packages/ai/src"],
18-
"@hotcrm/core": ["packages/core/src"],
19-
"@hotcrm/crm": ["packages/crm/src"],
20-
"@hotcrm/finance": ["packages/finance/src"],
21-
"@hotcrm/hr": ["packages/hr/src"],
22-
"@hotcrm/marketing": ["packages/marketing/src"],
23-
"@hotcrm/products": ["packages/products/src"],
24-
"@hotcrm/server": ["packages/server/src"],
25-
"@hotcrm/support": ["packages/support/src"]
17+
"@hotcrm/ai": ["packages/ai/src/index.ts"],
18+
"@hotcrm/core": ["packages/core/src/index.ts"],
19+
"@hotcrm/crm": ["packages/crm/src/index.ts"],
20+
"@hotcrm/finance": ["packages/finance/src/index.ts"],
21+
"@hotcrm/hr": ["packages/hr/src/index.ts"],
22+
"@hotcrm/marketing": ["packages/marketing/src/index.ts"],
23+
"@hotcrm/products": ["packages/products/src/index.ts"],
24+
"@hotcrm/server": ["packages/server/src/index.ts"],
25+
"@hotcrm/support": ["packages/support/src/index.ts"]
2626
}
2727
},
2828
"include": ["packages/*/src/**/*.ts"],

0 commit comments

Comments
 (0)