Skip to content

Commit 384ce29

Browse files
authored
Merge pull request #239 from objectstack-ai/copilot/fix-type-check-errors
2 parents db56ca7 + ab75a78 commit 384ce29

4 files changed

Lines changed: 12 additions & 11 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 ✅ |

content/docs/admin/setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This guide walks system administrators through the initial setup and ongoing con
1111

1212
Before you begin, ensure you have:
1313

14-
- **Node.js** 18+ installed
14+
- **Node.js** 20+ installed
1515
- **pnpm** package manager
1616
- Access to a supported database (PostgreSQL recommended)
1717
- Administrator credentials for your HotCRM instance

content/docs/architecture/overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ Load Balancer
312312

313313
### Backend
314314

315-
- **Runtime**: Node.js 18+
315+
- **Runtime**: Node.js 20+
316316
- **Language**: TypeScript 5+
317317
- **Framework**: Express.js
318318
- **Package Manager**: pnpm 8+

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)