UNPKG

@nx/remix

Version:

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

19 lines (17 loc) 495 B
import type { Linter, LinterType } from '@nx/eslint'; export interface NxRemixGeneratorSchema { directory: string; name?: string; tags?: string; linter?: Linter | LinterType; unitTestRunner?: 'vitest' | 'jest' | 'none'; e2eTestRunner?: 'cypress' | 'playwright' | 'none'; skipFormat?: boolean; // Internal options rootProject?: boolean; addPlugin?: boolean; nxCloudToken?: string; useTsSolution?: boolean; formatter?: 'prettier' | 'none'; useProjectJson?: boolean; }