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

43 lines (41 loc) 1.13 kB
import type { Linter, LinterType } from '@nx/eslint'; import type { UnitTestRunner } from '../../utils/test-runners'; export interface Schema { directory: string; name?: string; addTailwind?: boolean; skipFormat?: boolean; simpleName?: boolean; addModuleSpec?: boolean; sourceDir?: string; buildable?: boolean; publishable?: boolean; importPath?: string; spec?: boolean; flat?: boolean; commonModule?: boolean; prefix?: string; routing?: boolean; lazy?: boolean; parent?: string; tags?: string; strict?: boolean; linter?: Linter | LinterType; unitTestRunner?: UnitTestRunner; compilationMode?: 'full' | 'partial'; setParserOptionsProject?: boolean; skipModule?: boolean; skipPackageJson?: boolean; standalone?: boolean; displayBlock?: boolean; inlineStyle?: boolean; inlineTemplate?: boolean; viewEncapsulation?: 'Emulated' | 'None' | 'ShadowDom'; changeDetection?: 'Default' | 'OnPush'; style?: 'css' | 'scss' | 'sass' | 'less' | 'none'; skipTests?: boolean; selector?: string; skipSelector?: boolean; addPlugin?: boolean; skipTsConfig?: boolean; }