UNPKG

@nx/rspack

Version:

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

17 lines (15 loc) 418 B
export interface ApplicationGeneratorSchema { directory: string; name?: string; framework?: Framework; style: 'css' | 'scss' | 'less' | 'styl'; unitTestRunner?: 'none' | 'jest'; e2eTestRunner?: 'none' | 'cypress'; tags?: string; rootProject?: boolean; monorepo?: boolean; } export interface NormalizedSchema extends ApplicationGeneratorSchema { appProjectRoot: string; e2eProjectName: string; }