Browse Source
Merge in DEC/decision-webui-dcm from ~AUSTIN.DUAN/decision-webui-dcm:feature/x to feature/x * commit '58dee6f64933e57fc0e5d8ba78436083118414ba': 无JIRA任务,修复打包问题feature/x
Austin.Duan-段嗣跃
11 months ago
2 changed files with 13 additions and 2 deletions
@ -1,3 +1,13 @@
|
||||
module.exports = function (api) { |
||||
return require("@fui/babel-preset-fineui").configs.base(api) |
||||
module.exports = api => { |
||||
const { plugins, presets, sourceType } = require("@fui/babel-preset-fineui").configs.base(api); |
||||
|
||||
return { |
||||
compact: false, |
||||
presets, |
||||
sourceType, |
||||
plugins: [ |
||||
...plugins, |
||||
"@babel/plugin-proposal-logical-assignment-operators", |
||||
], |
||||
}; |
||||
}; |
||||
|
Loading…
Reference in new issue