@nstudio/schematics
Version: 
Cross-platform (xplat) tools for Nx workspaces.
27 lines (26 loc) • 572 B
TypeScript
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;
    /**
     * Skip installing dependencies
     */
    skipInstall?: boolean;
    /**
     * Skip formatting files
     */
    skipFormat?: boolean;
}