This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-05-03 02:04:16 +02:00
|
|
|
module.exports = {
|
2017-06-01 17:27:35 +02:00
|
|
|
test: /\.js$/,
|
2017-06-23 18:21:33 +02:00
|
|
|
// include react-intl because transform-react-remove-prop-types needs to apply to it
|
2017-06-25 12:49:53 +02:00
|
|
|
exclude: {
|
|
|
|
test: /node_modules/,
|
|
|
|
exclude: /react-intl[\/\\](?!locale-data)/,
|
|
|
|
},
|
2017-05-06 04:18:23 +02:00
|
|
|
loader: 'babel-loader',
|
|
|
|
options: {
|
2017-05-20 17:31:47 +02:00
|
|
|
forceEnv: process.env.NODE_ENV || 'development',
|
|
|
|
},
|
|
|
|
};
|