Primary finding
Invalid TypeScript version (^6.0.3) makes install/build fail
highbuild-releasehigh
- package.json:23
- package.json:11-12
TypeScript 6.x is not published on npm as of the current ecosystem; specifying ^6.0.3 will cause package installation to fail (no matching version), which in turn breaks all TypeScript-based scripts (typecheck/build). This is a hard build failure.
Recommendation
Pin TypeScript to a valid, current release compatible with Node 20 (for example, ^5.5.x or the latest 5.x). Verify installation succeeds and tsc is available. Example: "typescript": "^5.6.3".