Dirko Odendaal ee909cf7a5
feat(misc): conditionally allow starter template inclusion (#14268)
Co-authored-by: Colum Ferry <cferry09@gmail.com>
2023-01-27 15:07:07 +00:00

33 lines
785 B
TypeScript

import { Linter } from '@nrwl/linter';
import { SupportedStyles } from '../../../typings';
export interface Schema {
classComponent?: boolean;
compiler?: 'babel' | 'swc';
devServerPort?: number;
directory?: string;
e2eTestRunner: 'cypress' | 'none';
globalCss?: boolean;
js?: boolean;
linter: Linter;
name: string;
pascalCaseFiles?: boolean;
remotes?: string[];
setParserOptionsProject?: boolean;
skipFormat?: boolean;
skipWorkspaceJson?: boolean;
ssr?: boolean;
standaloneConfig?: boolean;
strict?: boolean;
style: SupportedStyles;
tags?: string;
unitTestRunner: 'jest' | 'vitest' | 'none';
minimal?: boolean;
}
export interface NormalizedSchema extends Schema {
appProjectRoot: string;
e2eProjectName: string;
projectName: string;
}