@nx/rspack
Version:
12 lines (10 loc) • 318 B
TypeScript
export type Framework = 'none' | 'react' | 'web' | 'nest';
export interface InitGeneratorSchema {
addPlugin?: boolean;
devServer?: boolean;
framework?: Framework;
keepExistingVersions?: boolean;
rootProject?: boolean;
style?: 'none' | 'css' | 'scss' | 'less' | 'styl';
updatePackageScripts?: boolean;
}