An open API service indexing awesome lists of open source software.

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

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()
]
}
```