1 Star 1 Fork 4

OpenV2X/omega

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
babel.config.js 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
liyoumin 提交于 2022-11-16 10:25 . fix: fix the router
var isDev = false;
if (process.env.NODE_ENV === 'dev') {
isDev = true;
}
module.exports = function (api) {
api.cache(true);
const presets = [
[
'@babel/preset-react',
{
development: isDev,
},
],
[
'@babel/preset-env',
{
targets: {
browsers: ['>0.25%', 'not ie 11', 'not op_mini all'],
},
},
],
[
'@babel/preset-typescript',
{
isTSX: true,
allExtensions: true,
},
],
];
const plugins = [
[
'@babel/plugin-proposal-decorators',
{
legacy: true,
},
],
[
'@babel/plugin-transform-runtime',
{
corejs: 3,
regenerator: true,
},
],
[
'import',
{
libraryName: 'antd',
libraryDirectory: 'es', // 这条加了可以再少20k左右
style: true, // 也可以配置为'css'。配置true可以减少30k
},
],
];
return {
// 这个不设置的话,webpack 魔法注释会被删除,魔法注释用于分包
comments: true,
presets,
plugins,
};
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/open-v2x/omega.git
git@gitee.com:open-v2x/omega.git
open-v2x
omega
omega
master

搜索帮助