rollup-plugin-visualizer
Version:
Visualize and analyze your bundle to quickly see which modules are taking up space.
9 lines (8 loc) • 328 B
TypeScript
import { BundlerOutputChunk } from "./bundler-types.js";
interface SourceMapModuleRenderInfo {
id: string;
renderedLength: number;
code: string[];
}
export declare const getSourcemapModules: (id: string, outputChunk: BundlerOutputChunk, dir: string) => Promise<Record<string, SourceMapModuleRenderInfo>>;
export {};