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

31 lines (29 loc) 706 B
export interface Schema { path: string; name?: string; displayBlock?: boolean; inlineStyle?: boolean; inlineTemplate?: boolean; viewEncapsulation?: 'Emulated' | 'None' | 'ShadowDom'; changeDetection?: 'Default' | 'OnPush'; style?: 'css' | 'scss' | 'sass' | 'less' | 'none'; skipTests?: boolean; inlineScam?: boolean; type?: string; prefix?: string; selector?: string; skipSelector?: boolean; export?: boolean; skipFormat?: boolean; } export interface NormalizedSchema extends Schema { name: string; directory: string; projectName: string; fileName: string; filePath: string; symbolName: string; export: boolean; inlineScam: boolean; modulePath: string; }