ts-transform-inferno
ts-transform-inferno copied to clipboard
Typescript transformer for InfernoJS
https://github.com/deamme/ts-transform-inferno/blob/master/package.json#L29
Functions are imported form inferno as var statements: `import * as Inferno from "inferno"; var createVNode = Inferno.createVNode;` Functions could be imported without creating the var statement: `import { createVNode...
If you import createVNode, createFragment, createComponentVNode, createTextVNode, normalizeProps, etc. (not sure if this is the full list) in a tsx file, occurs an error. For example, having createVNode imported in...
Using multiple spread operators to give props to a component does not work. If there is multiple spread operators, only the last one is taken into account. Example: `` transpiles...
Hi, I added "missing" tests from [babel-plugin-inferno](https://github.com/infernojs/babel-plugin-inferno). There were a few tests that did not pass, so I excluded them from this pr and will create separate issues for them.
Tracking this issue here: https://github.com/fuse-box/fuse-box/issues/1804
Hello, I recently switched to fuse-box because of my confusion with webpack and your transformer is the only hope if this transition is ever going to end in consummation. The...
Hi, Lately I have been thinking that it would be cool, if we could automatically add optimization flags. Can we detect type information in this plugin? For example if we...