Last active
November 15, 2015 17:40
-
-
Save jhen0409/e5e3686b9725805fd41f to your computer and use it in GitHub Desktop.
Node 4.0.0 babel 5 blacklist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "stage": 0, | |
| "blacklist": [ | |
| "es6.arrowFunctions", | |
| "es6.blockScoping", | |
| "es6.classes", // Don't black this if you are using ES7 classes features | |
| "es6.forOf", | |
| "es6.templateLiterals", | |
| "es6.constants", | |
| "es6.properties.computed", | |
| "es6.properties.shorthand" | |
| ] | |
| } |
Author
Author
Can use following modules if use Babel 6:
babel-preset-es2015-node4
babel-preset-es2015-node5
and use babel-preset-stage-x to support ES7
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Qrysto
Fixed. Thx :)
For
es6.blockScoping, I have found a problem #2401. (Fixed by #2405)