UNPKG

nx

Version:

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

11 lines (10 loc) 314 B
import type { NxJsonConfiguration } from '../../config/nx-json'; import type { Tree } from '../tree'; /** * Reads nx.json */ export declare function readNxJson(tree: Tree): NxJsonConfiguration | null; /** * Update nx.json */ export declare function updateNxJson(tree: Tree, nxJson: NxJsonConfiguration): void;