feat(esm): support custom conditions#675
Open
colinlienard wants to merge 2 commits intoprivatenumber:masterfrom
Open
feat(esm): support custom conditions#675colinlienard wants to merge 2 commits intoprivatenumber:masterfrom
colinlienard wants to merge 2 commits intoprivatenumber:masterfrom
Conversation
Owner
|
Thanks for the PR This is blocked until we add condition support to the CJS resolver though. Since tsx aims to consolidate ESM and CJS, we want to avoid introducing discrepancies between them. |
Author
|
I tried adding support for CJS, but it seems quite challenging. Do you have any ideas on how to make it work? @privatenumber |
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.
Add support for customConditions in ESM.
For example, if a tsconfig contains this:
{ "compilerOptions": { "customConditions": ["source"], } }passing the condition as an arg to the CLI would not be needed anymore:
But this is only for ESM as explained here: #574 (comment)
Related to #574