feat: update to latest deno_graph and ts-morph#488
Open
dsherret wants to merge 4 commits into
Open
Conversation
Updates deno_graph 0.96.2 -> 0.109.0 along with the rest of the deno ecosystem crates (deno_resolver, deno_config, deno_cache_dir, deno_ast, node_resolver, deno_path_util, import_map, sys_traits, deno_semver, deno_error) to their latest mutually-compatible versions. Bumps the rust toolchain to 1.88.0, which the new crates require. Also updates @ts-morph/bootstrap 0.27 -> 0.29 (TypeScript 6.0): - adds `ignoreDeprecations: "6.0"` since TS 6.0 turns `esModuleInterop: false` and `importsNotUsedAsValues` into deprecation errors - TS 6.0 no longer auto-discovers the `@types` packages installed in the output's node_modules, so they're now enumerated and included explicitly Removes the obsolete `timers` shim. Deno now returns the same `Timeout` type from setTimeout/setInterval as node, so coercing them back to `number` is no longer necessary.
dsherret
commented
Jun 29, 2026
Contributor
Author
There was a problem hiding this comment.
Disclaimer: PR is completely AI generated.
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.
Updates
deno_graph0.96.2 → 0.109.0 along with the rest of the deno ecosystem crates (deno_resolver,deno_config,deno_cache_dir,deno_ast,node_resolver,deno_path_util,import_map,sys_traits,deno_semver,deno_error) to their latest mutually-compatible versions.The new crates use let-chains, so the rust toolchain is bumped 1.86.0 → 1.88.0.
Also updates
@ts-morph/bootstrap0.27 → 0.29 (which bundles TypeScript 6.0):ignoreDeprecations: "6.0", since TS 6.0 turnsesModuleInterop: falseandimportsNotUsedAsValuesinto deprecation errors that abort the type check@typespackages installed in the output'snode_modules, so they're now enumerated and included explicitly via thetypescompiler optionRemoves the obsolete
timersshim. Deno now returns the sameTimeouttype fromsetTimeout/setIntervalas node, so coercing them back tonumberis no longer necessary.Notes
ignoreDeprecations(notablyimportsNotUsedAsValues: Remove) will become hard errors in TS 7.0 — worth migrating in a future change.cargo test(rust) anddeno test -A(type-check on) both pass.