Created
July 30, 2019 20:28
-
-
Save vatson/4b8d4a8d886cf29f4f3d8ab5ec5afed6 to your computer and use it in GitHub Desktop.
With Polyfills
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
module.exports = { | |
presets: [ | |
['@vue/app', { useBuiltIns: 'entry' }], | |
[ | |
'@babel/preset-env', | |
{ | |
targets: { | |
ie: '10', | |
browsers: 'last 2 versions', | |
}, | |
useBuiltIns: 'usage', | |
corejs: { version: 3, proposals: true }, | |
}, | |
], | |
], | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment