babel-loader
I struggled like hell to get babel-loader and es2015 playing nice with React, after reformatting the old React.createClass syntax to ES2015′s class for my components. Here’s how I formatted my module in webpack.config.js to get it working:
module: { loaders: [ { test: /\.jsx|js$/, loader: 'babel-loader', exclude: /(node_modules|bower_components)/, query: { presets: ['react', 'es2015'] } } ] }














