UNPKG

@nx/devkit

Version:

The Nx Devkit is used to customize Nx for different technologies and use cases. It contains many utility functions for reading and writing files, updating configuration, working with Abstract Syntax Trees(ASTs), and more. Learn more about [extending Nx by

8 lines (7 loc) 347 B
import type { ExecutorContext, Target } from 'nx/src/devkit-exports'; /** * Reads and combines options for a given target. * * Works as if you invoked the target yourself without passing any command lint overrides. */ export declare function readTargetOptions<T = any>({ project, target, configuration }: Target, context: ExecutorContext): T;