@rollup/browser 3.13.0 → 3.15.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.
@@ -647,6 +647,7 @@ export interface OutputOptions {
647
647
  dynamicImportInCjs?: boolean;
648
648
  entryFileNames?: string | ((chunkInfo: PreRenderedChunk) => string);
649
649
  esModule?: boolean | 'if-default-prop';
650
+ experimentalDeepDynamicChunkOptimization?: boolean;
650
651
  experimentalMinChunkSize?: number;
651
652
  exports?: 'default' | 'named' | 'none' | 'auto';
652
653
  extend?: boolean;
@@ -700,6 +701,7 @@ export interface NormalizedOutputOptions {
700
701
  dynamicImportInCjs: boolean;
701
702
  entryFileNames: string | ((chunkInfo: PreRenderedChunk) => string);
702
703
  esModule: boolean | 'if-default-prop';
704
+ experimentalDeepDynamicChunkOptimization: boolean;
703
705
  experimentalMinChunkSize: number;
704
706
  exports: 'default' | 'named' | 'none' | 'auto';
705
707
  extend: boolean;