UNPKG

@nstudio/schematics

Version:

Cross-platform (xplat) tools for Nx workspaces.

36 lines (35 loc) 619 B
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; /** * Add link to route for sandbox */ adjustSandbox?: boolean; /** * Skip formatting */ skipFormat?: boolean; }