@rollup/browser 3.2.5 → 3.3.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.
@@ -639,6 +639,7 @@ export interface OutputOptions {
639
639
  dynamicImportInCjs?: boolean;
640
640
  entryFileNames?: string | ((chunkInfo: PreRenderedChunk) => string);
641
641
  esModule?: boolean | 'if-default-prop';
642
+ experimentalMinChunkSize?: number;
642
643
  exports?: 'default' | 'named' | 'none' | 'auto';
643
644
  extend?: boolean;
644
645
  externalImportAssertions?: boolean;
@@ -691,6 +692,7 @@ export interface NormalizedOutputOptions {
691
692
  dynamicImportInCjs: boolean;
692
693
  entryFileNames: string | ((chunkInfo: PreRenderedChunk) => string);
693
694
  esModule: boolean | 'if-default-prop';
695
+ experimentalMinChunkSize: number;
694
696
  exports: 'default' | 'named' | 'none' | 'auto';
695
697
  extend: boolean;
696
698
  externalImportAssertions: boolean;