Skip to content

chore(deps-dev): Bump typescript from 6.0.3 to 7.0.2 in /frontend#123

Open
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/npm_and_yarn/frontend/dev/typescript-7.0.2
Open

chore(deps-dev): Bump typescript from 6.0.3 to 7.0.2 in /frontend#123
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/npm_and_yarn/frontend/dev/typescript-7.0.2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 24, 2026

Copy link
Copy Markdown
Contributor

Bumps typescript from 6.0.3 to 7.0.2.

Commits
Maintainer changes

This version was pushed to npm by microsoft1es, a new releaser for typescript since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [typescript](https://github.com/microsoft/TypeScript) from 6.0.3 to 7.0.2.
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](https://github.com/microsoft/TypeScript/commits)

---
updated-dependencies:
- dependency-name: typescript
  dependency-version: 7.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 24, 2026
@netlify

netlify Bot commented Jul 24, 2026

Copy link
Copy Markdown

Deploy Preview for disscount failed. Why did it fail? →

Name Link
🔨 Latest commit 5a44224
🔍 Latest deploy log https://app.netlify.com/projects/disscount/deploys/6a63e59aad370f0008562de7

@OffCrazyFreak

Copy link
Copy Markdown
Owner

Blocked on Next.js, keeping this open as a tracker

TypeScript 7 is the Go-native compiler. The 7.0 release ships without a stable programmatic API, so it no longer exposes the typescript/lib/typescript.js entrypoint that Next.js probes for when it detects TypeScript. Next 16.2.11 therefore concludes TypeScript is not installed at all:

Unhandled Rejection: Error: It looks like you're trying to use TypeScript but do not have the required package(s) installed.
Please install typescript by running:
	pnpm install --save-dev typescript

That happens in the next typegen step, which is what generates the PageProps and RouteContext globals. Because typegen aborts, those globals are never emitted, and the 15 errors in the typecheck step that follows are all the same downstream symptom, not real type errors:

src/app/(user)/digital-cards/page.tsx(11,10): error TS2304: Cannot find name 'PageProps'.
src/app/api/cijene/products/[ean]/route.ts(14,12): error TS2304: Cannot find name 'RouteContext'.
... 13 more, all TS2304 on PageProps / RouteContext

typescript@6.0.3 in the same run generates those types fine, so nothing in our source needs changing.

Two gates before this can be revisited

  1. Next.js. TypeScript 7 support landed behind experimental.useTypeScriptCli in the 16.3 preview, where Next shells out to the tsc binary instead of using the JS API. We are on 16.2.11. Tracking: next build misdetects TypeScript 7 as missing, failing when auto-install is disabled vercel/next.js#95490 and Add support for TypeScript 7 vercel/next.js#95633.
  2. typescript-eslint. typescript-eslint@8.65.0 (a dependency of eslint-config-next) declares typescript: ">=4.8.4 <6.1.0". TypeScript 7 is out of range for the lint stack too, independently of Next.

Decision

Not merging. Staying on typescript@~6.0.3 and leaving this PR open as the reminder. Worth reopening the question once Next.js 16.3 is stable and typescript-eslint widens its ceiling.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant