When babel-loader is added to the webpack config, it enables ES6 to be used throughout the app.
http://babeljs.io/ transpiles ES6 to code supported by ES5 browsers, enabling the use of the latest and greatest JavaScript APIs and syntaxes in your codebase. You can use es5-shim to ensure that this code runs on older browsers.
When
babel-loader
is added to the webpack config, it enables ES6 to be used throughout the app.http://babeljs.io/ transpiles ES6 to code supported by ES5 browsers, enabling the use of the latest and greatest JavaScript APIs and syntaxes in your codebase. You can use
es5-shim
to ensure that this code runs on older browsers.