Created
December 9, 2017 06:52
-
-
Save AaronFlower/d80e40415a15b2dac2caa4e8c7ef8dfd to your computer and use it in GitHub Desktop.
babel support spread
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
/* | |
That syntax is an experimental proposed syntax for the future, it is not part of es2015 or react so you'll need to enable it. | |
npm install --save-dev babel-plugin-transform-object-rest-spread | |
and add | |
"plugins": ["transform-object-rest-spread"] | |
alongside your existing presets. | |
Alternatively: | |
npm install --save-dev babel-preset-stage-3 | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment