stan-builder
Version:
11 lines (10 loc) • 316 B
TypeScript
import type { BundleOptions, OutputModule } from './types';
export interface RollupOptions {
cwd: string;
watch?: boolean;
type: OutputModule;
target?: 'browser' | 'node';
bundleOpt: BundleOptions;
verbose?: boolean;
}
export default function rollupBuild(opts: RollupOptions): Promise<void>;