@rollup/browser 4.9.6 → 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.
package/dist/rollup.browser.d.ts
CHANGED
|
@@ -683,6 +683,8 @@ type AddonFunction = (chunk: RenderedChunk) => string | Promise<string>;
|
|
|
683
683
|
|
|
684
684
|
type OutputPluginOption = MaybePromise<OutputPlugin | NullValue | false | OutputPluginOption[]>;
|
|
685
685
|
|
|
686
|
+
type HashCharacters = 'base64' | 'base36' | 'hex';
|
|
687
|
+
|
|
686
688
|
export interface OutputOptions {
|
|
687
689
|
amd?: AmdOptions;
|
|
688
690
|
assetFileNames?: string | ((chunkInfo: PreRenderedAsset) => string);
|
|
@@ -708,6 +710,7 @@ export interface OutputOptions {
|
|
|
708
710
|
freeze?: boolean;
|
|
709
711
|
generatedCode?: GeneratedCodePreset | GeneratedCodeOptions;
|
|
710
712
|
globals?: GlobalsOption;
|
|
713
|
+
hashCharacters?: HashCharacters;
|
|
711
714
|
hoistTransitiveImports?: boolean;
|
|
712
715
|
indent?: string | boolean;
|
|
713
716
|
inlineDynamicImports?: boolean;
|
|
@@ -722,6 +725,7 @@ export interface OutputOptions {
|
|
|
722
725
|
plugins?: OutputPluginOption;
|
|
723
726
|
preserveModules?: boolean;
|
|
724
727
|
preserveModulesRoot?: string;
|
|
728
|
+
reexportProtoFromExternal?: boolean;
|
|
725
729
|
sanitizeFileName?: boolean | ((fileName: string) => string);
|
|
726
730
|
sourcemap?: boolean | 'inline' | 'hidden';
|
|
727
731
|
sourcemapBaseUrl?: string;
|
|
@@ -758,6 +762,7 @@ export interface NormalizedOutputOptions {
|
|
|
758
762
|
freeze: boolean;
|
|
759
763
|
generatedCode: NormalizedGeneratedCodeOptions;
|
|
760
764
|
globals: GlobalsOption;
|
|
765
|
+
hashCharacters: HashCharacters;
|
|
761
766
|
hoistTransitiveImports: boolean;
|
|
762
767
|
indent: true | string;
|
|
763
768
|
inlineDynamicImports: boolean;
|
|
@@ -772,6 +777,7 @@ export interface NormalizedOutputOptions {
|
|
|
772
777
|
plugins: OutputPlugin[];
|
|
773
778
|
preserveModules: boolean;
|
|
774
779
|
preserveModulesRoot: string | undefined;
|
|
780
|
+
reexportProtoFromExternal: boolean;
|
|
775
781
|
sanitizeFileName: (fileName: string) => string;
|
|
776
782
|
sourcemap: boolean | 'inline' | 'hidden';
|
|
777
783
|
sourcemapBaseUrl: string | undefined;
|