插件
通过在 配置文件 中应用插件(或 预设),可以启用 Babel 的代码转换。
使用一个插件
如果插件在 npm 中,你可以传入插件的名字,Babel 会检查它是否安装在 node_modules
中。这将被添加到 plugins 配置项,该选项接受一个数组。
babel.config.json
{
"plugins": ["babel-plugin-myPlugin", "@babel/plugin-transform-runtime"]
}
You can also specify a relative/absolute path to your plugin.
babel.config.json
{
"plugins": ["./node_modules/asdf/plugin"]
}
更多有关配置插件或预设的详细信息,请查阅 命名规范化。