@nx/rspack
Version:
19 lines (17 loc) • 421 B
TypeScript
export interface PresetGeneratorSchema {
name: string;
framework?: Framework;
less?: boolean;
sass?: boolean;
stylus?: boolean;
unitTestRunner?: 'none' | 'jest';
e2eTestRunner?: 'none' | 'cypress';
directory?: string;
tags?: string;
rootProject?: boolean;
monorepo?: boolean;
}
export interface NormalizedSchema extends PresetGeneratorSchema {
appProjectRoot: string;
e2eProjectName: string;
}