tcl-remove-use-strict-plugin
v1.0.0
Published
自定义 webpack 插件去除项目打包文件中严格模式 use strict
Downloads
3
Readme
RemoveUseStrictPlugin
自定义 webpack 插件去除项目打包文件中严格模式 use strict
Installation
npm install tcl-remove-use-strict-plugin --save-dev
Usage
In your webpack.config.js
file:
const RemoveUseStrictPlugin = require("tcl-remove-use-strict-plugin");
module.exports = {
// ...
plugins: [
new RemoveUseStrictPlugin(),
// ...
],
};