Browse Source

Babel target attempt 2

jsbundling-with-webpack-modernizr
baarkerlounger 3 years ago
parent
commit
f459ed6ee0
  1. 2
      .browserslistrc
  2. 8
      babel.config.js

2
.browserslistrc

@ -1 +1,3 @@
defaults
ie 11
ie 10

8
babel.config.js

@ -22,7 +22,9 @@ module.exports = function(api) {
{
targets: {
node: 'current',
ie: "11"
browsers: [
'ie >= 10'
]
}
}
],
@ -36,7 +38,9 @@ module.exports = function(api) {
exclude: ['transform-typeof-symbol'],
targets: {
node: 'current',
ie: "11"
browsers: [
'ie >= 10'
]
}
}
]

Loading…
Cancel
Save