ts-react-loader
ts-react-loader copied to clipboard
Contributors wanted!
If you're interested in helping develop this library into something more "production ready", or even just interested in using it, say hi below.
Hi! I have been rooting for something like that for quite a while, I can help :)
Cool! I started writing out some issues for the things I know should be done, and some a bit more open-ended about the overall design are coming next.
It would be pretty wild if this could be wrapped into babel-plugin-transform-typescript .
That's pretty unlikely to be possible, babel-plugin-transform-typescript doesn't actually have any type information, it only parses the type declarations in order to remove them from the emitted code. If you want to drive code generation from type information, the only option is the typescript compiler.
See also this comment from last October.