UNPKG

@nx/plugin

Version:

This plugin is used to create Nx plugins! It contains generators for generating common plugin features like generators, executors, migrations and more.

12 lines (10 loc) 262 B
export interface PresetGeneratorSchema { pluginName: string; createPackageName?: string; useProjectJson?: boolean; addPlugin?: boolean; } export interface NormalizedPresetGeneratorOptions extends PresetGeneratorSchema { createPackageName: string; }