https://github.com/hendrysadrak/remove-strict-webpack-plugin
https://github.com/hendrysadrak/remove-strict-webpack-plugin
nodejs webpack webpack-plugin webpack4
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hendrysadrak/remove-strict-webpack-plugin
- Owner: hendrysadrak
- Created: 2018-04-17T09:06:01.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-09-28T14:12:46.000Z (over 3 years ago)
- Last Synced: 2024-10-14T01:11:57.528Z (8 months ago)
- Topics: nodejs, webpack, webpack-plugin, webpack4
- Language: JavaScript
- Homepage: https://npm.im/remove-strict-webpack-plugin
- Size: 3.91 KB
- Stars: 3
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# remove-strict-webpack-plugin
Removes "use strict" from transpiled es6->es5 code.
**This module should not be used in production environment. You should fix your strict errors not disable strict mode.**
## Usage
```javascript
const RemoveStrictPlugin = require( 'remove-strict-webpack-plugin' );// webpack.config.js
module.exports = {
plugins: [
new RemoveStrictPlugin()
]
}
```