@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) • 308 B
TypeScript
/**
* Checks whether both alias and path represent wildcard mappings.
*
* @param alias - The alias key from tsconfig paths
* @param pathStr - The resolved path string
* @returns True when both contain wildcard tokens
*/
export declare function isWildcardAlias(alias: string, pathStr: string): boolean;