Maija Heiskanen
Maija Heiskanen
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.
Hi! I am updating postcss-mixins from 6.2.3 to 8.1.0, and noticed that if mixin has a selector inside it, it wont work anymore. This: ``` @define-mixin svgicon-size-16 { height: 16px;...
**Do you want to request a *feature* or report a *bug*?** Feature **What is the current behavior?** metro-resolver cannot resolve [TypeScript imports that are in ESM format](https://www.typescriptlang.org/docs/handbook/esm-node.html), e.g. have .js...