@rollup/browser 4.10.0 → 4.11.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.
@@ -725,6 +725,7 @@ export interface OutputOptions {
725
725
  plugins?: OutputPluginOption;
726
726
  preserveModules?: boolean;
727
727
  preserveModulesRoot?: string;
728
+ reexportProtoFromExternal?: boolean;
728
729
  sanitizeFileName?: boolean | ((fileName: string) => string);
729
730
  sourcemap?: boolean | 'inline' | 'hidden';
730
731
  sourcemapBaseUrl?: string;
@@ -776,6 +777,7 @@ export interface NormalizedOutputOptions {
776
777
  plugins: OutputPlugin[];
777
778
  preserveModules: boolean;
778
779
  preserveModulesRoot: string | undefined;
780
+ reexportProtoFromExternal: boolean;
779
781
  sanitizeFileName: (fileName: string) => string;
780
782
  sourcemap: boolean | 'inline' | 'hidden';
781
783
  sourcemapBaseUrl: string | undefined;