@rollup/browser 3.16.0 → 3.17.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.
@@ -653,6 +653,7 @@ export interface OutputOptions {
653
653
  dynamicImportInCjs?: boolean;
654
654
  entryFileNames?: string | ((chunkInfo: PreRenderedChunk) => string);
655
655
  esModule?: boolean | 'if-default-prop';
656
+ /** @deprecated This option is no longer needed and ignored. */
656
657
  experimentalDeepDynamicChunkOptimization?: boolean;
657
658
  experimentalMinChunkSize?: number;
658
659
  exports?: 'default' | 'named' | 'none' | 'auto';
@@ -708,6 +709,7 @@ export interface NormalizedOutputOptions {
708
709
  dynamicImportInCjs: boolean;
709
710
  entryFileNames: string | ((chunkInfo: PreRenderedChunk) => string);
710
711
  esModule: boolean | 'if-default-prop';
712
+ /** @deprecated This option is no longer needed and ignored. */
711
713
  experimentalDeepDynamicChunkOptimization: boolean;
712
714
  experimentalMinChunkSize: number;
713
715
  exports: 'default' | 'named' | 'none' | 'auto';