@nx/remix
Version:
11 lines • 463 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;
//# sourceMappingURL=normalize-options.d.ts.map