@nstudio/schematics
Version:
Cross-platform (xplat) tools for Nx workspaces.
26 lines (25 loc) • 653 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;
/**
* Add headless e2e configuration suitable for CI
*/
addHeadlessE2e?: boolean;
}