我尝试使用以下 babelrcs:

{
  "presets": [
     ["es2015", { "transform-es2015-modules-commonjs": { "loose": true } }]
  ]
}

因“外国选项类型无效”而失败

{
  "presets": ["es2015"],
  "plugins": [
    ["transform-es2015-modules-commonjs", { "loose": true }]
  ]
}

忽略“松散”选项

{
  "plugins": [
     ["transform-es2015-modules-commonjs", { "loose": true }]
  ]
}

不使用预设

最佳答案

为了同样的目的,我最终创建了一个预设的 es2015-mod - 启用了松散模块的 Babel es2015 的精确副本。

关于babeljs - 在 babel 6 中使用 es2015 预设时,有没有办法使用松散模块?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33446318/

10-12 19:49