UNPKG

@nx/rspack

Version:

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

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