Created
September 2, 2020 13:46
-
-
Save Rabbitzzc/adf7e52f867ac98ca586d7fa0e39f9ef to your computer and use it in GitHub Desktop.
babel 配置
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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