@nx/remix
Version:
11 lines (10 loc) • 416 B
TypeScript
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;