@cpuchain/rollup
Version:
Rollup plugin & config generator for CPUchain TypeScript projects
15 lines (12 loc) • 385 B
TypeScript
import { RollupOptions } from 'rollup';
export interface GetRollupConfigOptions {
input?: string;
outputDir?: string;
browserName?: string;
polyfillBrowser?: boolean;
globals?: Record<string, string>;
minify?: boolean;
external?: "all" | string[] | ((id: string) => boolean);
}
export declare function getRollupConfig(opts?: GetRollupConfigOptions): RollupOptions;
export {};