Upgrade to TypeScript v6#580
Merged
AlexJSully merged 2 commits intomainfrom Apr 26, 2026
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the project’s toolchain and dependencies to support a TypeScript v6 upgrade in this Next.js (App Router) portfolio, including config adjustments and small MUI component prop updates.
Changes:
- Upgrade TypeScript to v6 and bump a set of runtime/dev dependencies (Next, React, MUI, ESLint, Cypress, etc.).
- Update TypeScript path alias pattern in
tsconfig.json(from@*to@/*). - Migrate Jest config to
next/jestand adjust several MUI components to move layout props intosx.
Reviewed changes
Copilot reviewed 8 out of 11 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| tsconfig.json | Updates TS path alias pattern to @/*. |
| src/components/projects/ProjectsGrid.tsx | Moves alignItems/justifyContent usage into sx for MUI components. |
| src/components/footer/Footer.tsx | Moves layout props into sx for MUI components. |
| src/components/cookie-snackbar/CookieSnackbar.tsx | Moves Stack layout props into sx. |
| src/app/not-found.tsx | Moves Stack layout props into sx. |
| src/app/global-error.tsx | Moves Stack layout props into sx. |
| src/app/error.tsx | Moves Stack layout props into sx. |
| package.json | Bumps TS to v6 and upgrades various dependencies/devDependencies. |
| jest.config.js | Switches to next/jest and updates moduleNameMapper. |
| eslint.config.js | Removes explicit React/React Hooks plugin wiring/rules. |
Co-authored-by: Copilot <copilot@github.com>
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.
Update to TypeScript v6 and includes other package upgrades as well and necessary changes.