@rollup/browser 3.17.3 → 3.18.0-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;