diff --git a/src/webpack/webpack.ts b/src/webpack/webpack.ts index 9cf43d9ed..24c549bc0 100644 --- a/src/webpack/webpack.ts +++ b/src/webpack/webpack.ts @@ -547,7 +547,7 @@ export const mapMangledModule = traceFunction("mapMangledModule", function mapMa * @see {@link mapMangledModule} */ export function mapMangledModuleLazy(code: string | RegExp | CodeFilter, mappers: Record, includeBlacklistedExports = false): Record { - if (IS_REPORTER) lazyWebpackSearchHistory.push(["mapMangledModule", [code, mappers]]); + if (IS_REPORTER) lazyWebpackSearchHistory.push(["mapMangledModule", [code, mappers, includeBlacklistedExports]]); return proxyLazy(() => mapMangledModule(code, mappers, includeBlacklistedExports)); }