UNPKG

@nx/rspack

Version:

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

12 lines (10 loc) 321 B
export type Framework = 'none' | 'react' | 'web' | 'nest' | 'angular'; export interface InitGeneratorSchema { addPlugin?: boolean; devServer?: boolean; framework?: Framework; keepExistingVersions?: boolean; rootProject?: boolean; style?: 'none' | 'css' | 'scss' | 'less'; updatePackageScripts?: boolean; }