Add for-of transform to babel configurations

Summary:
Adds babel-plugin-transform-es2015-for-of to babel configuration.

public

Reviewed By: tadeuzagallo

Differential Revision: D2712220

fb-gh-sync-id: cc6dd9e6e70946607ef9bb9f659eb628cf2eb555
This commit is contained in:
David Aurelio 2015-12-02 03:10:42 -08:00 committed by facebook-github-bot-0
parent 04187536d1
commit 5dc40afbf6
2 changed files with 3 additions and 1 deletions

View File

@ -69,6 +69,7 @@
"babel-plugin-transform-es2015-computed-properties": "^6.0.14",
"babel-plugin-transform-es2015-constants": "^6.0.15",
"babel-plugin-transform-es2015-destructuring": "^6.0.18",
"babel-plugin-transform-es2015-for-of": "^6.0.14",
"babel-plugin-transform-es2015-modules-commonjs": "^6.1.3",
"babel-plugin-transform-es2015-parameters": "^6.0.18",
"babel-plugin-transform-es2015-shorthand-properties": "^6.0.14",

View File

@ -23,7 +23,8 @@
"transform-object-rest-spread",
"transform-react-display-name",
"transform-react-jsx",
"transform-regenerator"
"transform-regenerator",
"transform-es2015-for-of"
],
"sourceMaps": false
}