@nx/rollup
Version:
16 lines (15 loc) • 365 B
TypeScript
export interface RollupProjectSchema {
project: string;
main?: string;
tsConfig?: string;
compiler?: 'babel' | 'swc' | 'tsc';
skipFormat?: boolean;
skipPackageJson?: boolean;
skipValidation?: boolean;
importPath?: string;
external?: string[];
rollupConfig?: string;
buildTarget?: string;
format?: ('cjs' | 'esm')[];
addPlugin?: boolean;
}