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:
parent
04187536d1
commit
5dc40afbf6
|
@ -69,6 +69,7 @@
|
||||||
"babel-plugin-transform-es2015-computed-properties": "^6.0.14",
|
"babel-plugin-transform-es2015-computed-properties": "^6.0.14",
|
||||||
"babel-plugin-transform-es2015-constants": "^6.0.15",
|
"babel-plugin-transform-es2015-constants": "^6.0.15",
|
||||||
"babel-plugin-transform-es2015-destructuring": "^6.0.18",
|
"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-modules-commonjs": "^6.1.3",
|
||||||
"babel-plugin-transform-es2015-parameters": "^6.0.18",
|
"babel-plugin-transform-es2015-parameters": "^6.0.18",
|
||||||
"babel-plugin-transform-es2015-shorthand-properties": "^6.0.14",
|
"babel-plugin-transform-es2015-shorthand-properties": "^6.0.14",
|
||||||
|
|
|
@ -23,7 +23,8 @@
|
||||||
"transform-object-rest-spread",
|
"transform-object-rest-spread",
|
||||||
"transform-react-display-name",
|
"transform-react-display-name",
|
||||||
"transform-react-jsx",
|
"transform-react-jsx",
|
||||||
"transform-regenerator"
|
"transform-regenerator",
|
||||||
|
"transform-es2015-for-of"
|
||||||
],
|
],
|
||||||
"sourceMaps": false
|
"sourceMaps": false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue