@nx/esbuild
Version:
9 lines (8 loc) • 393 B
TypeScript
import { ExecutorContext } from '@nx/devkit';
export interface GetEntryPointsOptions {
recursive?: boolean;
initialEntryPoints?: string[];
initialTsConfigFileName?: string;
onProjectFilesMatched?: (projectName: string, files: string[]) => void;
}
export declare function getEntryPoints(projectName: string, context: ExecutorContext, options?: GetEntryPointsOptions): string[];