@nx/remix
Version:
19 lines (17 loc) • 467 B
TypeScript
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;
}