You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
270 B

  1. module.exports = {
  2. test: /\.js$/,
  3. // include react-intl because transform-react-remove-prop-types needs to apply to it
  4. exclude: /node_modules[\/\\](?!react-intl)/,
  5. loader: 'babel-loader',
  6. options: {
  7. forceEnv: process.env.NODE_ENV || 'development',
  8. },
  9. };