This commit is contained in:
Graham Fairweather 2018-01-17 09:12:44 +01:00
parent f1e3240a6b
commit e64ab2e174
4 changed files with 155 additions and 4 deletions

View file

@ -1,5 +1,32 @@
{
"presets": ["env", "stage-3"],
"plugins": ["transform-runtime"],
"presets": [
["env", {
"loose": false,
"modules": "commonjs",
"spec": true,
"targets": {
"browsers": [
"last 3 Chrome versions",
"last 3 Firefox versions",
"Safari >= 10",
"Explorer >= 11",
"Edge >= 12",
"iOS >= 10",
"Android >= 6"
]
},
"useBuiltIns": "usage",
"debug": false
}],
"stage-3"
],
"plugins": [
"dynamic-import-node",
"transform-class-properties",
"transform-es5-property-mutators",
"transform-object-rest-spread",
"transform-runtime",
"transform-vue-jsx"
],
"comments": false
}