{{ message }}
fix(tsconfig): dedupe project reference dependencies#284
Open
CPunisher wants to merge 4 commits into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR improves tsconfig project-reference resolution by preventing redundant work and growth in tracked tsconfig dependency lists, reducing repeated traversals and memory pressure when resolving transitive project references.
Changes:
- Deduplicate
TsConfig.file_dependencieswhen merging extended configs and project references via a shared helper. - Add a
visitedset toTsConfig::find_reference_pathsto avoid re-walking already-seen reference nodes during transitive traversal. - Add a regression unit test to ensure dependency deduplication behavior is preserved.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
ee0b90d to
7ead072
Compare
7ead072 to
d8610fa
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
TsConfig::resolveiterate the flattened reference list directly, removing per-resolve recursive traversal and visited-set hashing.Verification
cargo fmt --checkcargo test tsconfig_project_references --libcargo test --libwas also run; non-tsconfig PnP tests fail in this local environment (src/tests/pnp.rs), while 143 other tests pass.Local downstream validation
Earlier in this investigation, built a local Rspack binding against the resolver fix and verified the ccweb Platform build with:
Result: exit 0, peak RSS around 12.6 GB. Before the dependency dedupe fix, the same validation still hit
exit 137/ memory pressure after only adding the reference traversal visited set.