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

39 lines (36 loc) 885 B
import type { DevRemoteDefinition } from '../../builders/utilities/module-federation'; interface Schema { buildTarget: string; port?: number; host?: string; proxyConfig?: string; ssl?: boolean; sslKey?: string; sslCert?: string; headers?: Record<string, string>; open?: boolean; verbose?: boolean; liveReload?: boolean; publicHost?: string; allowedHosts?: string[]; servePath?: string; disableHostCheck?: boolean; hmr?: boolean; watch?: boolean; poll?: number; devRemotes?: DevRemoteDefinition[]; skipRemotes?: string[]; pathToManifestFile?: string; static?: boolean; isInitialHost?: boolean; parallel?: number; staticRemotesPort?: number; buildLibsFromSource?: boolean; } export type NormalizedSchema = Schema & { devRemotes: DevRemoteDefinition[]; liveReload: boolean; open: boolean; ssl: boolean; verbose: boolean; };