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

33 lines (31 loc) 903 B
import type { Linter, LinterType } from '@nx/eslint'; import type { E2eTestRunner, UnitTestRunner } from '../../utils/test-runners'; import type { Styles } from '../utils/types'; export interface Schema { directory: string; name?: string; bundler?: 'webpack' | 'rspack'; remotes?: string[]; dynamic?: boolean; setParserOptionsProject?: boolean; skipPackageJson?: boolean; skipPostInstall?: boolean; addTailwind?: boolean; prefix?: string; style?: Styles; skipTests?: boolean; tags?: string; linter?: Linter | LinterType; unitTestRunner?: UnitTestRunner; e2eTestRunner?: E2eTestRunner; backendProject?: string; strict?: boolean; inlineStyle?: boolean; inlineTemplate?: boolean; viewEncapsulation?: 'Emulated' | 'Native' | 'None'; skipFormat?: boolean; standalone?: boolean; ssr?: boolean; serverRouting?: boolean; typescriptConfiguration?: boolean; }