其他分享
首页 > 其他分享> > @babel/runtime 和 @babel/plugin-transform-runtime 两个的作用是什么

@babel/runtime 和 @babel/plugin-transform-runtime 两个的作用是什么

作者:互联网

Babel 最基础的功能就是将采用 ECMAScript 2015+ 语法编写的代码转换为向后兼容的 JavaScript 语法,以便能够运行在当前和旧版本的浏览器或其他环境中。

最基础的依赖包也就是以下两个:

npm i -D @babel/core @babel/preset-env

比如我们声明了两个 Class 类,每当我们打包之后,都重复生成一段代码。

Test1.ts:

image

Test2.ts:

image

红色方框就是重复出现的代码,这将导致我们生成的文件变得特别大。而这些重复的代码在 @babel/runtime 中是有的,它要依赖于@babel/plugin-transform-runtime一起使用。

安装依赖包:

npm install -D @babel/plugin-transform-runtime
npm install @babel/runtime

在 babel.config.json 中配置:

{
  "presets": [
    "@babel/preset-env",
    "@babel/preset-typescript"
  ],
  "plugins": [
    "@babel/transform-runtime"
  ]
}

查看打包生成的文件:

image

这里就少了重复声明那三个函数的代码,而是选择直接引用@babel/runtime里的函数,因此这个依赖包要作为 dependencies 来安装,即打包上线之后也要用到。

所以说,光使用 babel 最基础的那两个依赖包是不够的,还要配合文章说的那两个来打包我们要上线的文件。

标签:npm,plugin,babel,代码,transform,runtime
来源: https://www.cnblogs.com/shiramashiro/p/16585975.html