@babel/plugin-transform-strict-mode
此插件可以通过 @babel/plugin-transform-modules-commonjs
启用。如果您想禁用它,您可以关闭 strict
或将 strictMode: false
作为选项传递给 commonjs 转换。
示例
输入
JavaScript
foo();
输出
JavaScript
"use strict";
foo();
安装
- npm
- Yarn
- pnpm
npm install --save-dev @babel/plugin-transform-strict-mode
yarn add --dev @babel/plugin-transform-strict-mode
pnpm add --save-dev @babel/plugin-transform-strict-mode
用法
使用配置文件(推荐)
babel.config.json
{
"plugins": ["@babel/plugin-transform-strict-mode"]
}
通过 CLI
Shell
babel --plugins @babel/plugin-transform-strict-mode script.js
通过 Node API
JavaScript
require("@babel/core").transformSync("code", {
plugins: ["@babel/plugin-transform-strict-mode"],
});