webpack5-remove-use-strict-plugin
v1.0.1
Published
Webpack 5 plugin to remove all instance of "use strict" from the generated code
Downloads
16
Maintainers
Readme
webpack5-remove-use-strict-plugin for Webpack 5
Webpack 5 plugin to remove "use strict" from the generated code.
Installation
This plugin requires Webpack 5.
Install the plugin with NPM and add it to your devDependencies
:
npm install --save-dev webpack5-remove-use-strict-plugin
Usage
var Webpack5RemoveUseStrictPlugin = require("webpack5-remove-use-strict-plugin");
// ...
// webpack plugins array
plugins: [
new Webpack5RemoveUseStrictPlugin()
]