You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// entry.jsimportsayfrom'./say.js'console.log(say())// say.jsimport{name}from'./name.js'functionsay(){return`My name is ${name}.`}exportdefaultsay// name.jsexportconstname='FishPlusOrange'
babel的es6转化为es5原理
输入文件
解析文件
输出打包文件
参考
ES6 代码转成 ES5 代码的实现思路是什么
easy-webpack
The text was updated successfully, but these errors were encountered: