@rollup/browser 3.17.3 → 3.18.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.
@@ -523,6 +523,7 @@ export interface InputOptions {
523
523
  cache?: boolean | RollupCache;
524
524
  context?: string;
525
525
  experimentalCacheExpiry?: number;
526
+ experimentalLogSideEffects?: boolean;
526
527
  external?: ExternalOption;
527
528
  /** @deprecated Use the "inlineDynamicImports" output option instead. */
528
529
  inlineDynamicImports?: boolean;
@@ -557,6 +558,7 @@ export interface NormalizedInputOptions {
557
558
  cache: false | undefined | RollupCache;
558
559
  context: string;
559
560
  experimentalCacheExpiry: number;
561
+ experimentalLogSideEffects: boolean;
560
562
  external: IsExternal;
561
563
  /** @deprecated Use the "inlineDynamicImports" output option instead. */
562
564
  inlineDynamicImports: boolean | undefined;
@@ -691,7 +693,7 @@ export interface OutputOptions {
691
693
  sourcemapBaseUrl?: string;
692
694
  sourcemapExcludeSources?: boolean;
693
695
  sourcemapFile?: string;
694
- sourcemapIgnoreList?: SourcemapIgnoreListOption;
696
+ sourcemapIgnoreList?: boolean | SourcemapIgnoreListOption;
695
697
  sourcemapPathTransform?: SourcemapPathTransformOption;
696
698
  strict?: boolean;
697
699
  systemNullSetters?: boolean;
@@ -746,7 +748,7 @@ export interface NormalizedOutputOptions {
746
748
  sourcemapBaseUrl: string | undefined;
747
749
  sourcemapExcludeSources: boolean;
748
750
  sourcemapFile: string | undefined;
749
- sourcemapIgnoreList: SourcemapIgnoreListOption | undefined;
751
+ sourcemapIgnoreList: SourcemapIgnoreListOption;
750
752
  sourcemapPathTransform: SourcemapPathTransformOption | undefined;
751
753
  strict: boolean;
752
754
  systemNullSetters: boolean;