chore(deps-dev): Bump typescript from 5.9.3 to 6.0.3 - #503
Merged
Merged
Conversation
dependabot
Bot
force-pushed
the
dependabot/npm_and_yarn/typescript-6.0.3
branch
from
September 10, 2026 22:53
2bea768 to
9ad7934
Compare
Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.9.3 to 6.0.3. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](microsoft/TypeScript@v5.9.3...v6.0.3) --- updated-dependencies: - dependency-name: typescript dependency-version: 6.0.3 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
TypeScript 6 rejects baseUrl with TS5101. Remove it so the existing relative paths mapping resolves from the tsconfig directory without a deprecation suppression. The explicit module and moduleResolution settings already work under TypeScript 6 and need no changes. Co-Authored-By: GPT-6 Astra <noreply@openai.com>
Nitjsefnie
force-pushed
the
dependabot/npm_and_yarn/typescript-6.0.3
branch
from
September 15, 2026 21:00
9ad7934 to
4d9067c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Bumps
typescriptfrom 5.9.3 to 6.0.3 (Dependabot) and removes thebaseUrlcompiler option that TypeScript 6 rejects with TS5101, so the typecheck, the release build and the container image build pass again.Changes
package.json,pnpm-lock.yaml:typescript5.9.3 → 6.0.3 (Dependabot's commit, rebased onto currentmain).tsconfig.json: drop"baseUrl": ".". The@/*→./src/*alias inpathsresolves relative to the tsconfig directory without it, sotsc, ESLint, Vitest and the Next build all keep resolving the alias. NoignoreDeprecations, no suppressions, no test changes.Testing
pnpm typecheckon the rebased branch before the fix exits 2 withtsconfig.json(26,5): error TS5101: Option 'baseUrl' is deprecated…; after the fix it exits 0.postgres:17-alpinedatabase, in CI order and bare:pnpm db:migrate && pnpm test --run && pnpm lint && pnpm typecheck && pnpm buildexits 0 (219 test files, 4962 tests passed, 1 expected branch-name skip), thennode scripts/check-page-geometry.mjsexits 0 (18/18 checks).baseUrlmakespnpm typecheckfail with TS5101 again, and breaking one@/import makes it fail with TS2307, so the alias is still load-bearing withoutbaseUrl.Dependencies
Footer
Generated by GPT-6 Astra (implementation, testing, review), Claude Opus 5 (brief, review)