@nstudio/schematics
Version:
Cross-platform (xplat) tools for Nx workspaces.
22 lines (21 loc) • 553 B
TypeScript
export interface Schema {
name: string;
skipFormat?: boolean;
inlineStyle?: boolean;
inlineTemplate?: boolean;
viewEncapsulation?: 'Emulated' | 'Native' | 'None';
routing?: boolean;
prefix?: string;
style?: string;
skipTests?: boolean;
directory?: string;
tags?: string;
unitTestRunner?: any;
e2eTestRunner?: any;
// xplat additional options
sample?: boolean;
/**
* Group by app name (appname-platform) instead of the default (platform-appname)
*/
groupByName?: boolean;
}