babel 6 要点记录

2019-02-20  本文已影响0人  拉面的无聊时光

babel-core

作用:

1.babel-core的transfrom等api的函数可以将js文件或者代码生成 ast,source map 的
2.babel的各种编译插件的基础

两种垫片库

1. babel-polyfill

使用方式:

//全局一次引入
require("babel-polyfill");
//webpack.config.js方式
module.exports = {
  entry: ["babel-polyfill", "./app/js"]
};

优点

缺点

2. transform-runtime

使用方式:

//通过插件方式使用
{
  "plugins": ["transform-runtime"]
}

优点:

缺点

useBuiltins

上一篇下一篇

猜你喜欢

热点阅读