We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 195df07 commit e74b9afCopy full SHA for e74b9af
packages/babel-preset-react-app/index.js
@@ -86,8 +86,11 @@ if (env === 'test') {
86
// Latest stable ECMAScript features
87
[require.resolve('babel-preset-env'), {
88
targets: {
89
- // We support everything React supports
90
- 'ie': 9
+ // React parses on ie 9, so we should too
+ ie: 9,
91
+ // We currently minify with uglify
92
+ // Remove after https://github.com/mishoo/UglifyJS2/issues/448
93
+ uglify: true
94
},
95
// Disable polyfill transforms
96
useBuiltIns: false
0 commit comments