You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
670 B
27 lines
670 B
6 years ago
|
{
|
||
|
"presets": [
|
||
|
["env", {
|
||
|
"loose": true,
|
||
|
"debug": false,
|
||
|
"useBuiltIns": true,
|
||
|
"targets": {
|
||
|
"browsers": [ "ie > 8", "last 2 version", "safari >= 9" ]
|
||
|
},
|
||
|
"production": {
|
||
|
"plugins": ["transform-remove-console"]
|
||
|
}
|
||
|
}]
|
||
|
],
|
||
|
"plugins": [
|
||
|
[ "transform-runtime", {
|
||
|
"helpers": false,
|
||
|
"polyfill": false,
|
||
|
"regenerator": true } ],
|
||
|
[ "transform-class-properties", { "spec": true } ],
|
||
|
[ "transform-object-rest-spread", { "useBuiltIns": true } ],
|
||
|
[ "transform-vue-jsx" ],
|
||
|
[ "syntax-dynamic-import" ]
|
||
|
],
|
||
|
"comments": false
|
||
|
}
|
||
|
|