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

11 lines 463 B
import { Tree } from '@nx/devkit'; import { RemixGeneratorSchema } from '../schema'; export interface NormalizedSchema extends RemixGeneratorSchema { appName: string; projectRoot: string; parsedTags: string[]; unitTestRunner?: 'jest' | 'none' | 'vitest'; e2eTestRunner?: 'cypress' | 'none'; } export declare function normalizeOptions(tree: Tree, options: RemixGeneratorSchema): NormalizedSchema; //# sourceMappingURL=normalize-options.d.ts.map