module.exports = function override(config) { // Exclude __tests__ folder from production bundle config.module.rules.push({ test: /\.tsx?$/, exclude: [/\/__tests__\//], }); return config; };