chinwagsocial/config/webpack/loaders/babel.js

16 lines
443 B
JavaScript
Raw Normal View History

2017-08-04 01:46:49 +10:00
const { resolve } = require('path');
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',
2017-08-04 01:46:49 +10:00
cacheDirectory: resolve(__dirname, '..', '..', '..', 'tmp', 'cache', 'babel-loader'),
},
};