@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
11 lines (10 loc) • 414 B
TypeScript
import { ProjectConfiguration } from '@nx/devkit';
/**
* Gets fallback entry point paths when TypeScript compiler paths are unavailable.
*
* Returns common entry point file locations based on project structure.
*
* @param project - The project configuration
* @returns Array of potential entry point file paths
*/
export declare function getFallbackEntryPointPaths(project: ProjectConfiguration): string[];