mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-11-30 19:27:38 +08:00
5808a0a8b1
* Replace the front-end code of the plugin branch with the front-end code of the dev branch
35 lines
821 B
Plaintext
35 lines
821 B
Plaintext
{
|
|
"presets": [
|
|
["env", {
|
|
"loose": true,
|
|
"debug": false,
|
|
"useBuiltIns": true,
|
|
"targets": {
|
|
"browsers": [
|
|
"> 1%",
|
|
"last 2 versions",
|
|
"ie >= 9",
|
|
"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
|
|
}
|
|
|