@nstudio/schematics
Version:
Cross-platform (xplat) tools for Nx workspaces.
31 lines (30 loc) • 609 B
TypeScript
export interface Schema {
/**
* The name of the app.
*/
name: string;
/**
* The web app target to use inside the electron app
*/
target: 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;
}