fix(js): handle arbitrary nested ts path mappings when re-mapping them to the outputs #27429
+34
−14
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.
Current Behavior
When re-mapping a TS path mapping like
"@foo/lib1/plugins/some-file": ["packages/lib1/src/plugins/some-file.ts"]
, it results in:The first path is wrong because it's missing the
src
directory, and the second one has a file extension that's not in the output.Expected Behavior
When re-mapping a TS path mapping like
"@foo/lib1/plugins/some-file": ["packages/lib1/src/plugins/some-file.ts"]
, it should result in:In this case, the second path would correctly point to the output. It doesn't have an extension, which allows the compiler to pick up the correct one.
Note that while the first and third paths are still not valid for this specific use case, they could still be valid for other use cases, and in any case, they're still kept for backward compatibility. The util to re-map these paths is currently very generic and generates potentially valid paths. The invalid paths for a given use case won't throw an error as long as there's one that's valid.
Related Issue(s)
Fixes #21699