ci: ignore TypeScript major bumps in Dependabot until the toolchain supports the native port#83
Conversation
…upports the native port TypeScript 7 is the native (Go) compiler port; Next.js and typescript-eslint dont support it yet (tsc --noEmit crashes reading 'Cjs', next build fails). Stop Dependabot re-proposing the TS 7 major (see #82) while staying open to minor/patch updates on the 6.x line. Remove once the toolchain supports TS 7.
|
Warning Review limit reached
Next review available in: 50 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
What
Adds a Dependabot
ignorefor TypeScript major-version bumps in the npm ecosystem, so thetypescript7.xmajor isn't re-proposed while the toolchain can't build under it. Minor/patch updates on the6.xline still flow normally.Why
Dependabot #82 tried to bump
typescript6.0.3 → 7.0.2. TypeScript 7 is the new native (Go) compiler port, and the current stack doesn't support it yet:npx tsc --noEmitcrashes:TypeError: Cannot read properties of undefined (reading 'Cjs')(exit 2) — the TS 7 CLI shim throws before type-checking.next buildfails ("Ecmascript file had an error" / "remove the tsconfig.json…") because Next.js 16 andtypescript-eslint8 rely on the programmatic TS compiler API that the native port doesn't expose yet (typescript-eslintstill declares a<6.0.0peer).Nothing in this repo can patch a crash inside the compiler port, so main stays on the TS 6.x line (dev-only dependency). This ignore is scoped narrowly (only
typescript, onlysemver-major) and is documented inline with a note to remove it once Next.js + typescript-eslint declare TS 7 support.Closes the loop on #82 (that PR is closed).