UNPKG

@nx/js

Version:

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

23 lines 836 B
import { type CreateDependencies, type CreateNodesV2 } from '@nx/devkit'; export interface TscPluginOptions { compiler?: 'tsc' | 'tsgo'; typecheck?: boolean | { targetName?: string; }; build?: boolean | { targetName?: string; configName?: string; buildDepsName?: string; watchDepsName?: string; skipBuildCheck?: boolean; }; 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: CreateNodesV2<TscPluginOptions>; //# sourceMappingURL=plugin.d.ts.map