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.

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