@rollup/browser 4.24.4 → 4.25.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.
@@ -782,6 +782,7 @@ export interface OutputOptions {
782
782
  sourcemapFileNames?: string | ((chunkInfo: PreRenderedChunk) => string);
783
783
  sourcemapIgnoreList?: boolean | SourcemapIgnoreListOption;
784
784
  sourcemapPathTransform?: SourcemapPathTransformOption;
785
+ sourcemapDebugIds?: boolean;
785
786
  strict?: boolean;
786
787
  systemNullSetters?: boolean;
787
788
  validate?: boolean;
@@ -836,6 +837,7 @@ export interface NormalizedOutputOptions {
836
837
  sourcemapFileNames: string | ((chunkInfo: PreRenderedChunk) => string) | undefined;
837
838
  sourcemapIgnoreList: SourcemapIgnoreListOption;
838
839
  sourcemapPathTransform: SourcemapPathTransformOption | undefined;
840
+ sourcemapDebugIds: boolean;
839
841
  strict: boolean;
840
842
  systemNullSetters: boolean;
841
843
  validate: boolean;