https://github.com/hacksysteam/webpack5-remove-use-strict-plugin
Webpack 5 plugin to remove "use strict"
https://github.com/hacksysteam/webpack5-remove-use-strict-plugin
Last synced: 5 months ago
JSON representation
Webpack 5 plugin to remove "use strict"
- Host: GitHub
- URL: https://github.com/hacksysteam/webpack5-remove-use-strict-plugin
- Owner: hacksysteam
- License: gpl-3.0
- Created: 2022-12-05T06:19:22.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-07T06:08:22.000Z (over 3 years ago)
- Last Synced: 2025-08-09T19:02:53.162Z (11 months ago)
- Language: JavaScript
- Size: 44.9 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
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
```js
var Webpack5RemoveUseStrictPlugin = require("webpack5-remove-use-strict-plugin");
// ...
// webpack plugins array
plugins: [
new Webpack5RemoveUseStrictPlugin()
]
```