我需要将Math.pow
的简写转换回Math.pow
才能在Safari 10上运行。调用此简写的代码在node_module中。简单地添加插件似乎并不会改变代码。
默认情况下,插件是否不针对node_modules运行?
以下是我的babel.config.js
配置。我正在Webpack中使用babel-loader 8运行Babel 7。
module.exports = function(api) {
api.cache(false);
const presets = [
[
"@babel/env",
{
modules: "commonjs",
useBuiltIns: "usage",
},
],
];
const plugins = [["@babel/plugin-transform-exponentiation-operator"]];
return {
presets,
plugins,
};
};