@nx/js
Version:
21 lines (20 loc) • 751 B
TypeScript
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>;