1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/config/webpack/loaders/babel.js

10 lines
270 B
JavaScript
Raw Normal View History

module.exports = {
test: /\.js$/,
// include react-intl because transform-react-remove-prop-types needs to apply to it
2017-06-24 05:03:52 -07:00
exclude: /node_modules[\/\\](?!react-intl)/,
loader: 'babel-loader',
options: {
forceEnv: process.env.NODE_ENV || 'development',
},
};