about summary refs log tree commit diff
path: root/config/webpack/loaders/babel.js
blob: 49b191d267fbaec92a28ac34181ad1916683fc53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = {
  test: /\.js$/,
  // include react-intl because transform-react-remove-prop-types needs to apply to it
  exclude: {
    test: /node_modules/,
    exclude: /react-intl[\/\\](?!locale-data)/,
  },
  loader: 'babel-loader',
  options: {
    forceEnv: process.env.NODE_ENV || 'development',
    sourceRoot: 'app/javascript',
  },
};