UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

16 lines (15 loc) 702 B
import type { ProjectConfiguration } from '../../config/workspace-json-project-json'; export declare function resolveNxPlugin(moduleName: string, root: string, paths: string[]): Promise<{ pluginPath: string; name: any; shouldRegisterTSTranspiler: boolean; }>; export declare function resolveLocalNxPlugin(importPath: string, projects: Record<string, ProjectConfiguration>, root?: string): { path: string; projectConfig: ProjectConfiguration; } | null; export declare function getPluginPathAndName(moduleName: string, paths: string[], projects: Record<string, ProjectConfiguration>, root: string): { pluginPath: string; name: any; shouldRegisterTSTranspiler: boolean; };