1 Star 0 Fork 79

admins/Vant

forked from Gitee 极速下载/Vant 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
babel.config.js 752 Bytes
一键复制 编辑 原始数据 按行查看 历史
neverland 提交于 2019-07-03 16:10 . [Build] enable site pwa (#3736)
module.exports = function (api) {
const { BABEL_MODULE, NODE_ENV } = process.env;
const useESModules = BABEL_MODULE !== 'commonjs' && NODE_ENV !== 'test';
api && api.cache(false);
return {
presets: [
[
'@babel/preset-env',
{
loose: true,
modules: useESModules ? false : 'commonjs'
}
],
[
'@vue/babel-preset-jsx',
{
functional: false
}
],
'@babel/preset-typescript'
],
plugins: [
[
'@babel/plugin-transform-runtime',
{
corejs: false,
helpers: true,
regenerator: false,
useESModules
}
],
'@babel/plugin-transform-object-assign'
]
};
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/rmv/Vant.git
[email protected]:rmv/Vant.git
rmv
Vant
Vant
master

搜索帮助