UNPKG

@nx/node

Version:

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

14 lines (13 loc) 670 B
import { GeneratorCallback, Tree } from '@nx/devkit'; import { Schema } from './schema'; export interface NormalizedSchema extends Omit<Schema, 'useTsSolution'> { appProjectRoot: string; parsedTags: string[]; outputPath: string; importPath: string; isUsingTsSolutionConfig: boolean; } export declare function addLintingToApplication(tree: Tree, options: NormalizedSchema): Promise<GeneratorCallback>; export declare function applicationGenerator(tree: Tree, schema: Schema): Promise<GeneratorCallback>; export declare function applicationGeneratorInternal(tree: Tree, schema: Schema): Promise<GeneratorCallback>; export default applicationGenerator;