@rollup/browser 4.14.3 → 4.16.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.
@@ -623,6 +623,7 @@ export interface NormalizedInputOptions {
623
623
  }
624
624
 
625
625
  export type InternalModuleFormat = 'amd' | 'cjs' | 'es' | 'iife' | 'system' | 'umd';
626
+ export type ImportAttributesKey = 'with' | 'assert';
626
627
 
627
628
  export type ModuleFormat = InternalModuleFormat | 'commonjs' | 'esm' | 'module' | 'systemjs';
628
629
 
@@ -712,6 +713,7 @@ export interface OutputOptions {
712
713
  globals?: GlobalsOption;
713
714
  hashCharacters?: HashCharacters;
714
715
  hoistTransitiveImports?: boolean;
716
+ importAttributesKey?: ImportAttributesKey;
715
717
  indent?: string | boolean;
716
718
  inlineDynamicImports?: boolean;
717
719
  interop?: InteropType | GetInterop;
@@ -764,6 +766,7 @@ export interface NormalizedOutputOptions {
764
766
  globals: GlobalsOption;
765
767
  hashCharacters: HashCharacters;
766
768
  hoistTransitiveImports: boolean;
769
+ importAttributesKey: ImportAttributesKey;
767
770
  indent: true | string;
768
771
  inlineDynamicImports: boolean;
769
772
  interop: GetInterop;