UNPKG

@nx/js

Version:

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

21 lines (20 loc) 751 B
import { type CreateDependencies, type CreateNodes, type CreateNodesV2 } from '@nx/devkit'; export interface TscPluginOptions { typecheck?: boolean | { targetName?: string; }; build?: boolean | { targetName?: string; configName?: string; buildDepsName?: string; watchDepsName?: string; }; verboseOutput?: boolean; } /** * @deprecated The 'createDependencies' function is now a no-op. This functionality is included in 'createNodesV2'. */ export declare const createDependencies: CreateDependencies; export declare const PLUGIN_NAME = "@nx/js/typescript"; export declare const createNodesV2: CreateNodesV2<TscPluginOptions>; export declare const createNodes: CreateNodes<TscPluginOptions>;