@nstudio/schematics
Version:
Cross-platform (xplat) tools for Nx workspaces.
32 lines (31 loc) • 545 B
TypeScript
export interface Schema {
name: string;
/**
* Target apps
*/
projects?: string;
/**
* Target platforms
*/
platforms?: string;
/**
* Only generate for specified projects and ignore shared code
*/
onlyProject?: boolean;
/**
* Only generate the module and ignore default component creation
*/
onlyModule?: boolean;
/**
* Ignore base component generation
*/
ignoreBase?: boolean;
/**
* Configure routing
*/
routing?: boolean;
/**
* Skip formatting
*/
skipFormat?: boolean;
}