@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
9 lines (8 loc) • 360 B
TypeScript
/**
* Determines if a path string references a supported index file using pattern matching.
* This is a fallback when we can't dynamically verify the file exists.
*
* @param pathStr - Path value from the tsconfig mapping
* @returns True if the path matches common index file patterns
*/
export declare function isIndexFilePath(pathStr: string): boolean;