UNPKG

@nx/vite

Version:

The Nx Plugin for building and testing applications using Vite

17 lines (16 loc) 469 B
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; port?: number; // Internal options addPlugin?: boolean; projectType?: 'application' | 'library'; previewPort?: number; }