mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-23 22:12:44 +03:00
29 lines
1011 B
JSON
29 lines
1011 B
JSON
|
/**
|
||
|
* This configuration file manages Rush's plugin feature.
|
||
|
*/
|
||
|
{
|
||
|
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush-plugins.schema.json",
|
||
|
"plugins": [
|
||
|
/**
|
||
|
* Each item configures a plugin to be loaded by Rush.
|
||
|
*/
|
||
|
// {
|
||
|
// /**
|
||
|
// * The name of the NPM package that provides the plugin.
|
||
|
// */
|
||
|
// "packageName": "@scope/my-rush-plugin",
|
||
|
// /**
|
||
|
// * The name of the plugin. This can be found in the "pluginName"
|
||
|
// * field of the "rush-plugin-manifest.json" file in the NPM package folder.
|
||
|
// */
|
||
|
// "pluginName": "my-plugin-name",
|
||
|
// /**
|
||
|
// * The name of a Rush autoinstaller that will be used for installation, which
|
||
|
// * can be created using "rush init-autoinstaller". Add the plugin's NPM package
|
||
|
// * to the package.json "dependencies" of your autoinstaller, then run
|
||
|
// * "rush update-autoinstaller".
|
||
|
// */
|
||
|
// "autoinstallerName": "rush-plugins"
|
||
|
// }
|
||
|
]
|
||
|
}
|