Skip to content

Instantly share code, notes, and snippets.

@vatson
Created July 30, 2019 20:28
Show Gist options
  • Save vatson/4b8d4a8d886cf29f4f3d8ab5ec5afed6 to your computer and use it in GitHub Desktop.
Save vatson/4b8d4a8d886cf29f4f3d8ab5ec5afed6 to your computer and use it in GitHub Desktop.
With Polyfills
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