@nestjs-mod/schematics
Version:
The Nx Plugin for NestJS that contains executors and generators for allowing your workspace to create NestJS-mod applications
25 lines (22 loc) • 624 B
TypeScript
import type { Linter, LinterType } from '@nx/eslint';
export interface ApplicationGeneratorOptions {
directory: string;
name?: string;
frontendProject?: string;
linter?: Linter | LinterType;
skipFormat?: boolean;
skipPackageJson?: boolean;
standaloneConfig?: boolean;
tags?: string;
unitTestRunner?: 'jest' | 'none';
e2eTestRunner?: 'jest' | 'none';
setParserOptionsProject?: boolean;
rootProject?: boolean;
strict?: boolean;
addPlugin?: boolean;
useTsSolution?: boolean;
}
interface NormalizedOptions extends ApplicationGeneratorOptions {
appProjectName: string;
appProjectRoot: Path;
}