1 Star 0 Fork 135

shicl@live.cn / Bim3dEditor

forked from songmy / Bim3dEditor 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
babel.config.js 902 Bytes
一键复制 编辑 原始数据 按行查看 历史
songmy 提交于 2023-08-25 09:13 . change info
const isDev = process.env.NODE_ENV === 'development';
module.exports = {
// 执行顺序由右往左,所以先处理ts,再处理jsx,最后再试一下babel转换为低版本语法
"presets": [
[
"@babel/preset-env",
{
// 设置兼容目标浏览器版本,这里可以不写,babel-loader会自动寻找上面配置好的文件.browserslistrc
"targets": {
"browsers": ["ie>=8", "chrome>=62"],
"node": "8.9.0",
},
"debug": false,
"useBuiltIns": "usage", // 根据配置的浏览器兼容,以及代码中使用到的api进行引入polyfill按需添加
"corejs": 3 // 配置使用core-js低版本
}
],
"@babel/preset-react",
"@babel/preset-typescript"
],
"plugins": [
isDev && require.resolve('react-refresh/babel'), // 配置react开发环境热替换
[
"@babel/plugin-proposal-decorators", { "legacy": true }
]
].filter(Boolean)
}
TypeScript
1
https://gitee.com/shicl/bim3d-editor.git
git@gitee.com:shicl/bim3d-editor.git
shicl
bim3d-editor
Bim3dEditor
master

搜索帮助