2
0

rush-plugins.json 1011 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * This configuration file manages Rush's plugin feature.
  3. */
  4. {
  5. "$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush-plugins.schema.json",
  6. "plugins": [
  7. /**
  8. * Each item configures a plugin to be loaded by Rush.
  9. */
  10. // {
  11. // /**
  12. // * The name of the NPM package that provides the plugin.
  13. // */
  14. // "packageName": "@scope/my-rush-plugin",
  15. // /**
  16. // * The name of the plugin. This can be found in the "pluginName"
  17. // * field of the "rush-plugin-manifest.json" file in the NPM package folder.
  18. // */
  19. // "pluginName": "my-plugin-name",
  20. // /**
  21. // * The name of a Rush autoinstaller that will be used for installation, which
  22. // * can be created using "rush init-autoinstaller". Add the plugin's NPM package
  23. // * to the package.json "dependencies" of your autoinstaller, then run
  24. // * "rush update-autoinstaller".
  25. // */
  26. // "autoinstallerName": "rush-plugins"
  27. // }
  28. ]
  29. }