Bump typescript from 5.6.2 to 7.0.2 - #20
Conversation
Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.6.2 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>
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 43341dc. Configure here.
| "nock": "^14.0.5", | ||
| "rimraf": "^5.0.10", | ||
| "typescript": "5.6.2", | ||
| "typescript": "7.0.2", |
There was a problem hiding this comment.
TypeScript 7 emits ESM by default
High Severity
Bumping typescript from 5.6.2 to 7.0.2 changes the unpinned defaults in tsconfig.json: module becomes esnext instead of CommonJS, and target becomes es2025. tsc will emit export syntax, but Zapier loads the build with require('./dist') in index.js, which will throw at runtime. CI will not catch this because Vitest runs the TypeScript sources, not the compiled dist output.
Additional Locations (1)
Reviewed by Cursor Bugbot for commit 43341dc. Configure here.


Bumps typescript from 5.6.2 to 7.0.2.
Release notes
Sourced from typescript's releases.
... (truncated)
Commits
Maintainer changes
This version was pushed to npm by microsoft1es, a new releaser for typescript since your current version.
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Note
Medium Risk
Major TypeScript upgrade can introduce new compile/type-check failures or tsconfig incompatibilities without touching production code; verify
npm run buildand tests in CI.Overview
Upgrades the TypeScript dev dependency from 5.6.2 to 7.0.2 in
package.json, with the matchingpackage-lock.jsonrefresh.The lockfile reflects TypeScript 7’s packaging: platform-specific optional
@typescript/typescript-*binaries and a raised Node engine requirement (>=16.20.0). Runtime app dependencies are unchanged;npm run buildstill compiles viatscas in CI.Reviewed by Cursor Bugbot for commit 43341dc. Bugbot is set up for automated code reviews on this repo. Configure here.