@rollup/browser 3.18.0-0 → 3.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -693,7 +693,7 @@ export interface OutputOptions {
693
693
  sourcemapBaseUrl?: string;
694
694
  sourcemapExcludeSources?: boolean;
695
695
  sourcemapFile?: string;
696
- sourcemapIgnoreList?: SourcemapIgnoreListOption;
696
+ sourcemapIgnoreList?: boolean | SourcemapIgnoreListOption;
697
697
  sourcemapPathTransform?: SourcemapPathTransformOption;
698
698
  strict?: boolean;
699
699
  systemNullSetters?: boolean;
@@ -748,7 +748,7 @@ export interface NormalizedOutputOptions {
748
748
  sourcemapBaseUrl: string | undefined;
749
749
  sourcemapExcludeSources: boolean;
750
750
  sourcemapFile: string | undefined;
751
- sourcemapIgnoreList: SourcemapIgnoreListOption | undefined;
751
+ sourcemapIgnoreList: SourcemapIgnoreListOption;
752
752
  sourcemapPathTransform: SourcemapPathTransformOption | undefined;
753
753
  strict: boolean;
754
754
  systemNullSetters: boolean;