-
Was reading through http://www.2ality.com/2015/07/es6-module-exports.html and realized that reassigning the id of a default exported hoistable declaration or class actually updates the default export …
-
> Original issue submitted by @johanjisu in https://github.com/babel/minify/issues/739
minify breaks code with conditional extends, such as this:
```js
export default Target => class Events ext…
-
### Code
The code looks valid, but `babel-node` throws error.
Looks like this happens only with `async` and `` combination.
```js
const foo = async () => {};
```
### Error
```
repl: Une…
-
When transforming CallExpression with ArrowFn as the callee to TaggedTemplate, a pair of parens doesn't get outputted.
http://astexplorer.net/#/K2CkvW8FLH
Edit: Also for FunctionExpression
#…
-
---
Migrated from https://github.com/babel/babel-preset-env/issues/10
Originally created by @tinovyatkin on *Fri, 30 Sep 2016 03:53:05 GMT*
---
I've got an error `Options {"targets":{"chrome":51},"m…
-
I have find a bug in babel;
You can see it here:
[Babel](https://babeljs.io/repl/#?babili=false&browsers=&build=&builtIns=false&code_lz=DYUwLgBAJghmMQLwQNoEYA0ECsWDke-hEA7EQLoDcAUNQGYCuAdgMZgCWA9kx…
-
> Issue originally made by @AndreyBelym
### Bug information
- **Babel version:** 6.9.0
- **Node version:** 5.10.1
- **npm version:** 3.8.3
### Input code
```
//Failing
async function foo(bar, baz) {
…
-
> Issue originally made by @migueloller
### Bug information
- **Babel version:** 6.11.4
### Description
Repro: https://babeljs.io/repl/#?evaluate=true&lineWrap=false&presets=es2015%2Cstage-0&code=con…
-
I'm trying to convert a Babel project with typescript and I realize that I need to change some of the imports from `import module from 'module'` to `import * as module from 'module'` to make it work.
…
-
ClassDeclarations have bindings in two scopes
1. The scope in which it is declared
2. The class's own scope
While all other bindings belong to only one scope.
### Example:
http://astexplo…