我正在使用 Babel 6 转译我的 ES2015 项目。
使用的包devDependencies
:
"babel-core": "*",
"babel-loader": "*",
"babel-preset-es2015": "*"
.babelrc
内容:
{ "presets": ["es2015"] }
编译并尝试运行后,我得到:
Error: Cannot find mode 'babel-runtime/core-js/json/stringify'
我不想依赖babel-runtime
于我的项目。我只是想在幕后转换所有内容并为用户发布纯 ES5。我不想被用户端的实时 Babel 依赖所拖累。
我怎样才能让它在没有的情况下工作babel-runtime
?