UNPKG

@nx/node

Version:

The Node Plugin for Nx contains generators to manage Node applications within an Nx workspace.

14 lines (13 loc) 544 B
import { GeneratorCallback, Tree } from '@nx/devkit'; import { Schema } from './schema'; export interface NormalizedSchema extends Schema { fileName: string; projectName: string; projectRoot: string; parsedTags: string[]; compiler: 'swc' | 'tsc'; isUsingTsSolutionConfig: boolean; } export declare function libraryGenerator(tree: Tree, schema: Schema): Promise<GeneratorCallback>; export declare function libraryGeneratorInternal(tree: Tree, schema: Schema): Promise<GeneratorCallback>; export default libraryGenerator;