2019-03-15 14:05:31 +00:00
|
|
|
const { join, resolve } = require('path');
|
2023-05-23 16:15:17 +01:00
|
|
|
|
2019-03-15 14:05:31 +00:00
|
|
|
const { env, settings } = require('../configuration');
|
|
|
|
|
|
|
|
module.exports = {
|
2023-04-03 02:31:39 +01:00
|
|
|
test: /\.(js|jsx|mjs|ts|tsx)$/,
|
2019-03-15 14:05:31 +00:00
|
|
|
include: [
|
|
|
|
settings.source_path,
|
|
|
|
...settings.resolved_paths,
|
2024-01-08 10:57:40 +00:00
|
|
|
'node_modules/@reduxjs'
|
2019-03-15 14:05:31 +00:00
|
|
|
].map(p => resolve(p)),
|
2024-01-08 10:57:40 +00:00
|
|
|
exclude: function(modulePath) {
|
|
|
|
return (
|
|
|
|
/node_modules/.test(modulePath) &&
|
|
|
|
!/@reduxjs/.test(modulePath)
|
|
|
|
);
|
|
|
|
},
|
2019-03-15 14:05:31 +00:00
|
|
|
use: [
|
|
|
|
{
|
|
|
|
loader: 'babel-loader',
|
|
|
|
options: {
|
|
|
|
cacheDirectory: join(settings.cache_path, 'babel-loader'),
|
|
|
|
cacheCompression: env.NODE_ENV === 'production',
|
|
|
|
compact: env.NODE_ENV === 'production',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|