-
So it looks like IE11 doesn't recognize the class syntax. Is there a modified version that would work?
Edit: In case other people are having this problem, I was able to use this site to convert the…
-
I just ran `npm install` and got this message:
> babel-preset-es2015@6.24.1: We’re super :smile_cat: excited that you’re trying to use ES2015 syntax, but instead of making more yearly presets :sob…
-
When using a `.babelrc` (or similar) config file for babel, changes to this file to not bust the persistent cache, causing compiled outputs to not change.
Not sure the best way to handle this as ht…
-
In case it is helpful to others, here is the `.babelrc` file that I am using with this kernel to get TypeScript and React working:
```json
{
"presets": [
"@babel/react",
[
"@ba…
-
Something like https://babeljs.io/repl, but without any option. The right side should render eslint and flowtype errors. It should help people to write parts of their apps in the clean style. I feel t…
-
When one has a React component accepting children, e.g.
```rescript
module A = {
@react.component
let make = (~children) => {children}
}
```
and, instead of passing the children like …
-
Reading https://babeljs.io/docs/en/babel-preset-env
For example https://babeljs.io/docs/en/babel-preset-env#browserslist-integration has an example where `"useBuiltIns": "entry"` is used. This will…
-
Choose one: is this a bug report or feature request? feature request
auto add displayName on default exports
### Input Code
```js
// components/BarChart.js
export default ({ height, width…
-
There are some dependencies that started pushing native ES modules in a very invasive way, see:
- [ ] `strip-ansi` 6.0.0 -> 7.0.0 (https://github.com/adeira/universe/pull/2249)
- [ ] `hast-util-to…
-
Per this blog post:
http://facebook.github.io/react/blog/2015/06/12/deprecating-jstransform-and-react-tools.html
Looks like JSXTransformer is being deprecated and we should be looking at BabelJS for…