Merge remote-tracking branch 'parent/main' into upstream-20240112

This commit is contained in:
KMY 2024-01-12 14:48:17 +09:00
commit e65fb9fb51
333 changed files with 2661 additions and 1461 deletions

View file

@ -7,8 +7,14 @@ module.exports = {
include: [
settings.source_path,
...settings.resolved_paths,
'node_modules/@reduxjs'
].map(p => resolve(p)),
exclude: /node_modules/,
exclude: function(modulePath) {
return (
/node_modules/.test(modulePath) &&
!/@reduxjs/.test(modulePath)
);
},
use: [
{
loader: 'babel-loader',