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) 467 B
import { SupportedStyles } from '@nx/react'; export interface NxRemixGeneratorSchema { directory: string; name?: string; style: SupportedStyles; tags?: string; importPath?: string; /** @deprecated Use bundler instead. */ buildable?: boolean; bundler?: 'none' | 'vite' | 'rollup'; linter?: 'none' | 'eslint'; unitTestRunner?: 'jest' | 'vitest' | 'none'; js?: boolean; skipFormat?: boolean; addPlugin?: boolean; useProjectJson?: boolean; }