I'm running a build that using typescript in lieu of babel, and I was wondering how hard it'd be to make a Webpack plugin/loader that does the same thing as the babel plugin.
I'd be willing to do this myself in a PR, I was just wondering if you had any guidance on getting started.
I was thinking of hooking into the vue-loader output and wrapping it in React.createElement(VueWrapper, {...component, props}, children) or something like that.
I'm running a build that using typescript in lieu of babel, and I was wondering how hard it'd be to make a Webpack plugin/loader that does the same thing as the babel plugin.
I'd be willing to do this myself in a PR, I was just wondering if you had any guidance on getting started.
I was thinking of hooking into the
vue-loader
output and wrapping it inReact.createElement(VueWrapper, {...component, props}, children)
or something like that.Thanks for the awesome package!