UNPKG

@nx/vite

Version:

The Nx Plugin for building and testing applications using Vite

9 lines (8 loc) 404 B
import { type GeneratorCallback, type Tree } from '@nx/devkit'; export type EnsureDependenciesOptions = { uiFramework: 'angular' | 'react' | 'none'; compiler?: 'babel' | 'swc'; includeLib?: boolean; testEnvironment?: 'node' | 'jsdom' | 'happy-dom' | 'edge-runtime' | string; }; export declare function ensureDependencies(host: Tree, schema: EnsureDependenciesOptions): GeneratorCallback;