@nxworker/workspace
Version:
Nx plugin providing generators for managing workspace files, including the move-file generator for safely moving files between projects while updating all imports
13 lines (12 loc) • 488 B
TypeScript
import { ProjectConfiguration, Tree } from '@nx/devkit';
/**
* Gets all possible entry point paths for a project.
*
* First attempts to find entry points from TypeScript compiler paths,
* then falls back to common entry point locations.
*
* @param tree - The virtual file system tree
* @param project - The project configuration
* @returns Array of entry point file paths
*/
export declare function getProjectEntryPointPaths(tree: Tree, project: ProjectConfiguration): string[];