export interface Schema { /** * 是否要添加核心模块,现在的风格化推荐的,很少会不加。 */ coreModel?: boolean; /** * Name of the project. */ project?: string; /** * 是否要添加公享模块,现在的风格化推荐的,很少会不加。 */ sharedModel?: boolean; /** * Do not add ng-zorro-antd dependencies to package.json (e.g., --skipPackageJson) */ skipPackageJson?: boolean; }