about summary refs log tree commit diff
path: root/config/webpack/loaders/babel.js
blob: a1992a450a90fba5322b34ae48870d55a12bb2c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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',
  },
};