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.
35 lines
822 B
35 lines
822 B
{ |
|
"presets": [ |
|
["env", { |
|
"loose": true, |
|
"debug": false, |
|
"useBuiltIns": true, |
|
"targets": { |
|
"browsers": [ |
|
"> 1%", |
|
"last 2 versions", |
|
"ie >= 10", |
|
"edge >= 12", |
|
"firefox >= 28", |
|
"chrome >= 29", |
|
"opera >= 17" |
|
] |
|
}, |
|
"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 |
|
} |
|
|