forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~GUYI/fineui:master to master * commit '91cc4d778d50fc42d49a4aa8a94ffac72ffd6e4d': KERNEL-4752 refactor:使用babel-preset-fineui配置babeles6
windy
4 years ago
3 changed files with 3 additions and 78 deletions
@ -1,34 +1 @@ |
|||||||
module.exports = function (api) { |
module.exports = require('@fui/babel-preset-fineui').configs.ie8; |
||||||
api.cache(true); |
|
||||||
const presets = [ |
|
||||||
[ |
|
||||||
"@babel/preset-env", |
|
||||||
{ |
|
||||||
targets: { |
|
||||||
ie: 8, |
|
||||||
}, |
|
||||||
}, |
|
||||||
], |
|
||||||
"@babel/preset-typescript", |
|
||||||
]; |
|
||||||
const plugins = [ |
|
||||||
[ |
|
||||||
"@babel/plugin-proposal-decorators", |
|
||||||
{ |
|
||||||
legacy: true, |
|
||||||
}, |
|
||||||
], |
|
||||||
"@babel/plugin-proposal-class-properties", |
|
||||||
"@babel/plugin-transform-block-scoping", |
|
||||||
["@babel/plugin-transform-classes", { |
|
||||||
loose: true, |
|
||||||
}], |
|
||||||
"@babel/plugin-transform-proto-to-assign", |
|
||||||
"@babel/plugin-transform-modules-commonjs", |
|
||||||
]; |
|
||||||
|
|
||||||
return { |
|
||||||
presets, |
|
||||||
plugins, |
|
||||||
}; |
|
||||||
}; |
|
||||||
|
@ -1,34 +1 @@ |
|||||||
module.exports = function (api) { |
module.exports = require('@fui/babel-preset-fineui').configs.base; |
||||||
api.cache(true); |
|
||||||
const presets = [ |
|
||||||
[ |
|
||||||
"@babel/preset-env", |
|
||||||
{ |
|
||||||
targets: { |
|
||||||
ie: 9, |
|
||||||
chrome: 47, |
|
||||||
}, |
|
||||||
}, |
|
||||||
], |
|
||||||
"@babel/preset-typescript", |
|
||||||
]; |
|
||||||
const plugins = [ |
|
||||||
[ |
|
||||||
"@babel/plugin-proposal-decorators", |
|
||||||
{ |
|
||||||
legacy: true, |
|
||||||
}, |
|
||||||
], |
|
||||||
"@babel/plugin-proposal-class-properties", |
|
||||||
"@babel/plugin-transform-block-scoping", |
|
||||||
["@babel/plugin-transform-classes", { |
|
||||||
loose: true, |
|
||||||
}], |
|
||||||
"@babel/plugin-transform-proto-to-assign", |
|
||||||
]; |
|
||||||
|
|
||||||
return { |
|
||||||
presets, |
|
||||||
plugins, |
|
||||||
}; |
|
||||||
}; |
|
||||||
|
Loading…
Reference in new issue