UNPKG

nx

Version:

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

9 lines (8 loc) 381 B
import ignore from 'ignore'; /** * An array of glob patterns that should always be ignored. */ export declare const ALWAYS_IGNORE: string[]; export declare function getIgnoredGlobs(root?: string, prependRoot?: boolean): string[]; export declare function getAlwaysIgnore(root?: string): string[]; export declare function getIgnoreObject(root?: string): ReturnType<typeof ignore>;