20 lines
498 B
TypeScript

import { Linter } from '@nrwl/linter';
import { UnitTestRunner } from '../../utils/test-runners';
export interface ApplicationGeneratorOptions {
name: string;
directory?: string;
frontendProject?: string;
linter?: Linter;
skipFormat?: boolean;
skipPackageJson?: boolean;
standaloneConfig?: boolean;
tags?: string;
unitTestRunner?: UnitTestRunner;
setParserOptionsProject?: boolean;
}
interface NormalizedOptions extends ApplicationGeneratorOptions {
appProjectRoot: Path;
}