Created
April 29, 2018 08:17
-
-
Save boynoiz/c01e13891f2d52b42943b162585fc0e9 to your computer and use it in GitHub Desktop.
This file contains 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
Show hidden characters
{ | |
"env": { | |
"development" : { | |
"presets": [ | |
["env", { | |
"targets": { | |
"browsers": ["last 2 versions", "> 5% in BE"], | |
"uglify": false | |
}, | |
"modules": false | |
}] | |
], | |
"plugins": [ | |
"syntax-dynamic-import", | |
"transform-object-rest-spread", | |
"transform-async-to-generator", | |
["transform-runtime", | |
{ | |
"helpers": true, | |
"polyfill": true, | |
"regenerator": true | |
} | |
] | |
] | |
}, | |
"production" : { | |
"presets": [ | |
["env", { | |
"targets": { | |
"browsers": ["last 2 versions", "> 5% in BE"], | |
"uglify": true | |
}, | |
"modules": false | |
}] | |
], | |
"plugins": [ | |
"syntax-dynamic-import", | |
"transform-object-rest-spread", | |
"transform-async-to-generator", | |
["transform-runtime", | |
{ | |
"helpers": true, | |
"polyfill": true, | |
"regenerator": true | |
} | |
] | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment