UNPKG

@nstudio/schematics

Version:

Cross-platform (xplat) tools for Nx workspaces.

31 lines (30 loc) 639 B
export interface Schema { /** * The name of the app. */ name: string; /** * npm scope - auto detected from nx.json but can specify your own name */ npmScope?: string; /** * The prefix to apply to generated selectors. */ prefix?: string; /** * Group by app name (appname-platform) instead of the default (platform-appname) */ groupByName?: boolean; /** * Use root routing file */ routing?: boolean; /** * Use sample feature setup */ sample?: boolean; /** * Skip installing dependencies */ skipInstall?: boolean; }