@routineless/nx-aws-cdk
Version:
Nx plugin for AWS CDK
10 lines (9 loc) • 424 B
TypeScript
import { ExecutorContext } from '@nx/devkit';
export interface GetEntryPointsOptions {
recursive?: boolean;
initialEntryPoints?: string[];
initialTsConfigFileName?: string;
excludeImplicit?: boolean;
onProjectFilesMatched?: (projectName: string, files: string[]) => void;
}
export declare function getEntryPoints(projectName: string, context: ExecutorContext, options?: GetEntryPointsOptions): string[];