UNPKG

@nx/js

Version:

The JS plugin for Nx contains executors and generators that provide the best experience for developing JavaScript and TypeScript projects.

9 lines (8 loc) 384 B
import { ExecutorContext, ProjectGraphProjectNode } from '@nx/devkit'; import { DependentBuildableProjectNode } from './buildable-libs-utils'; export declare function checkDependencies(context: ExecutorContext, tsConfigPath: string): { tmpTsConfig: string | null; projectRoot: string; target: ProjectGraphProjectNode; dependencies: DependentBuildableProjectNode[]; };