libs/nx/src/generators/plugin/schema.ts
Properties |
|
| name | |
| Type |
string
|
|
Description
|
The name of the plugin to be added. |
| project | |
| Type |
string
|
|
Description
|
The name of the project where the plugin should be added. Must match an existing project's name. |
| runtimeCompatible (Optional) | |
| Type |
boolean
|
|
Description
|
Whether the plugin should be runtime compatible. |
export interface PluginGeneratorSchema {
/**
* The name of the project where the plugin should be added. Must match an existing
* project's name.
* @x-prompt Please type the name of the project
*/
project: string;
/**
* The name of the plugin to be added.
* @x-prompt Please type the name of the plugin
*/
name: string;
/**
* Whether the plugin should be runtime compatible.
*/
runtimeCompatible?: boolean;
}