@nx/vite
Version:
15 lines (14 loc) • 428 B
TypeScript
export interface ViteConfigurationGeneratorSchema {
uiFramework: 'react' | 'none';
compiler?: 'babel' | 'swc';
project: string;
newProject?: boolean;
includeVitest?: boolean;
inSourceTests?: boolean;
includeLib?: boolean;
skipFormat?: boolean;
testEnvironment?: 'node' | 'jsdom' | 'happy-dom' | 'edge-runtime' | string;
// Internal options
addPlugin?: boolean;
projectType?: 'application' | 'library';
}