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