@nstudio/schematics
Version:
Cross-platform (xplat) tools for Nx workspaces.
37 lines (35 loc) • 631 B
TypeScript
export interface Schema {
name: string;
/**
* Target feature. Default is 'ui' if none specified.
*/
feature?: string;
/**
* Group it in a subfolder of the target feature
*/
subFolder?: string;
/**
* Target apps
*/
projects?: string;
/**
* Only generate for specified projects and ignore shared code
*/
onlyProject?: boolean;
/**
* Target platforms
*/
platforms?: string;
/**
* Ignore base component generation
*/
ignoreBase?: boolean;
/**
* Schematic processing helpers
*/
needsIndex?: boolean;
/**
* Skip formatting
*/
skipFormat?: boolean;
}