@lcap/builder
Version:
lcap builder utils
15 lines (14 loc) • 463 B
TypeScript
export interface BuildOutputConfig {
external: (string | RegExp)[];
globals: Record<string, string>;
}
export interface GetBuildOutputConifgOptions {
rootPath: string;
framework: string;
type: 'nasl.ui' | 'extension';
addDepExternal?: boolean;
}
export declare function getBuildOutputConifg({ rootPath, framework, addDepExternal }: GetBuildOutputConifgOptions): {
external: (string | RegExp)[];
globals: Record<string, string>;
};