UNPKG

@nx/angular

Version:

The Nx Plugin for Angular contains executors, generators, and utilities for managing Angular applications and libraries within an Nx workspace. It provides: - Integration with libraries such as Storybook, Jest, ESLint, Tailwind CSS, Playwright and Cypre

35 lines (32 loc) 789 B
export interface Schema { path: string; name?: string; displayBlock?: boolean; inlineStyle?: boolean; inlineTemplate?: boolean; standalone?: boolean; viewEncapsulation?: 'Emulated' | 'None' | 'ShadowDom'; changeDetection?: 'Default' | 'OnPush'; style?: 'css' | 'scss' | 'sass' | 'less' | 'none'; skipTests?: boolean; type?: string; skipImport?: boolean; selector?: string; module?: string; skipSelector?: boolean; export?: boolean; exportDefault?: boolean; prefix?: string; ngHtml?: boolean; skipFormat?: boolean; } export interface NormalizedSchema extends Schema { directory: string; filePath: string; projectName: string; projectSourceRoot: string; projectRoot: string; selector: string; fileName: string; symbolName: string; }