1 Star 1 Fork 1

Alibaba/ChatUI

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
babel.config.js 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
akai 提交于 2021-05-25 22:31 . build(npm): drop gulp
module.exports = (api) => {
const env = api.env();
api.cache.using(() => env === 'development');
return {
presets: ['@babel/preset-env', '@babel/preset-typescript', '@babel/preset-react'],
plugins: [
'@babel/plugin-transform-runtime',
// Stage 3
'@babel/plugin-proposal-class-properties',
],
env: {
esm: {
presets: [
[
'@babel/preset-env',
{
modules: false,
},
],
],
plugins: [
[
'@babel/plugin-transform-runtime',
{
useESModules: true,
},
],
],
},
umd: {
presets: [
[
'@babel/preset-env',
{
targets: {
android: '4.4',
ios: '9',
},
useBuiltIns: 'usage',
corejs: 3,
},
],
],
plugins: [['@babel/plugin-transform-runtime', { corejs: 3 }]],
},
},
ignore: [
'**/*.test.ts',
'**/*.test.tsx',
]
};
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/alibaba/ChatUI.git
[email protected]:alibaba/ChatUI.git
alibaba
ChatUI
ChatUI
next

搜索帮助