Skip to content

Instantly share code, notes, and snippets.

@Rabbitzzc
Created September 2, 2020 13:46
Show Gist options
  • Save Rabbitzzc/adf7e52f867ac98ca586d7fa0e39f9ef to your computer and use it in GitHub Desktop.
Save Rabbitzzc/adf7e52f867ac98ca586d7fa0e39f9ef to your computer and use it in GitHub Desktop.
babel 配置
{
"presets": [
# 表示使用 @babel/preset-env 提供的预设环境,兼容当前已经发布为标准规范的 es 版本(比如 2019 年底之前已经发布的 es2017、es2018),不包括提案内的语法
"@babel/env"
],
"plugins": [
# https://zhuanlan.zhihu.com/p/147083132
# 解决污染原型链问题 | helper 从统一模块中引入,解决重复移动打包
"@babel/plugin-transform-runtime"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment