I\'m using function form of \"use strict\" and don\'t want global form which Babel adds after transpilation. The problem is I\'m using some libraries that aren\'t using \"us
Babel 6 + es2015
We can disabled babel-plugin-transform-es2015-modules-commonjs
to require babel-plugin-transform-strict-mode
.
So comment the following code in node_modules/babel-plugin-transform-es2015-modules-commonjs/lib/index.js
at 151 line
//inherits: require("babel-plugin-transform-strict-mode"),