@modus/gimbal-plugin-source-map-explorer
Version:
Adds Source Map Explorer auditing to Gimbal
17 lines (16 loc) • 457 B
TypeScript
import { Meta } from "../../typings/module";
export interface BundleThreshold {
[file: string]: string;
}
export interface BundleObject {
disable?: boolean;
path: string;
thresholds: BundleThreshold;
}
export declare type BundleType = string | BundleObject;
export interface Config {
bundles: BundleType[];
}
export declare const defaultConfig: Config;
export declare const meta: Meta;
export declare const type = "source-map-explorer";