We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1996c03 commit 1874e5bCopy full SHA for 1874e5b
packages/bundler-plugin-core/src/index.ts
@@ -382,9 +382,9 @@ export function sentryUnpluginFactory({
382
} else {
383
// This option is only strongly typed for the webpack plugin, where it is used. It has no effect on other plugins
384
const webpack_forceExitOnBuildComplete =
385
- (typeof options._experiments["forceExitOnBuildCompletion"] === "boolean" &&
386
- options._experiments["forceExitOnBuildCompletion"]) ??
387
- false;
+ typeof options._experiments["forceExitOnBuildCompletion"] === "boolean"
+ ? options._experiments["forceExitOnBuildCompletion"]
+ : undefined;
388
389
plugins.push(
390
debugIdUploadPlugin(
0 commit comments