UNPKG

nx

Version:

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

19 lines (18 loc) 782 B
import type { ProjectConfiguration } from '../../config/workspace-json-project-json'; type LocalPluginMatch = { path: string; projectConfig: ProjectConfiguration; resolvedFile?: string; }; 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): LocalPluginMatch | null; export declare function getPluginPathAndName(moduleName: string, paths: string[], projects: Record<string, ProjectConfiguration>, root: string): { pluginPath: string; name: any; shouldRegisterTSTranspiler: boolean; }; export {};