UNPKG

@nx/rspack

Version:

The Nx Plugin for Rspack contains executors and generators that support building applications using Rspack.

18 lines (16 loc) 401 B
export interface PresetGeneratorSchema { name: string; framework?: Framework; less?: boolean; sass?: boolean; unitTestRunner?: 'none' | 'jest'; e2eTestRunner?: 'none' | 'cypress'; directory?: string; tags?: string; rootProject?: boolean; monorepo?: boolean; } export interface NormalizedSchema extends PresetGeneratorSchema { appProjectRoot: string; e2eProjectName: string; }