mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
7a77f7b3bb
Use the settings modal as an example/testcase
14 lines
349 B
JavaScript
14 lines
349 B
JavaScript
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',
|
|
sourceRoot: 'app/javascript',
|
|
},
|
|
};
|