feat(babel-preset-jsx): Make importSource
API configurable
#291
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.
I've encountered a situation that I need to make my lib compatible with both
vue 2.6
andvue2.7
at the same time, so I usedvue-demi
.I should ensure that all of imports from vue should be redirected to
vue-demi
which makesvue-demi
work, but the plugin@vitejs/plugin-vue2-jsx
which used@vue/babel-preset-jsx
inside can't pass some options to control the import source. It will auto injectimport {h} from 'vue'
statements to the build result, which doesn't meet my needs.So I create this PR to extend the abilities of this plugin, wish I can pass
{ compositionAPI: { importSource: 'vue-demi' } }
to the@vitejs/plugin-vue2-jsx
with usingvite
.Please take a code review, thanks!