UNPKG

@nx/react

Version:

The React plugin for Nx contains executors and generators for managing React applications and libraries within an Nx workspace. It provides: - Integration with libraries such as Jest, Vitest, Playwright, Cypress, and Storybook. - Generators for applica

16 lines (14 loc) 390 B
import { Linter, LinterType } from '@nx/eslint'; export interface Schema { name: string; path: string; remote: string; remoteDirectory?: string; e2eTestRunner?: 'cypress' | 'playwright' | 'none'; host?: string; linter?: Linter | LinterType; skipFormat?: boolean; style?: SupportedStyles; unitTestRunner?: 'jest' | 'vitest' | 'none'; bundler?: 'rspack' | 'webpack'; }