UNPKG

@lcap/builder

Version:
15 lines (14 loc) 463 B
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>; };