UNPKG

@nx/web

Version:

The Nx Plugin for Web Components contains generators for managing Web Component applications and libraries within an Nx workspace. It provides: - Integration with libraries such as Jest, Playwright, Cypress, and Storybook. - Scaffolding for creating bu

21 lines (19 loc) 537 B
import type { Linter, LinterType } from '@nx/eslint'; export interface Schema { directory: string; name?: string; prefix?: string; style?: string; bundler?: 'webpack' | 'none' | 'vite'; compiler?: 'babel' | 'swc'; skipFormat?: boolean; tags?: string; unitTestRunner?: 'jest' | 'vitest' | 'none'; inSourceTests?: boolean; e2eTestRunner?: 'cypress' | 'playwright' | 'none'; linter?: Linter | LinterType; setParserOptionsProject?: boolean; strict?: boolean; addPlugin?: boolean; useProjectJson?: boolean; }