cobuild.json 784 B

12345678910111213141516171819202122
  1. /**
  2. * This configuration file manages Rush's cobuild feature.
  3. * More documentation is available on the Rush website: https://rushjs.io
  4. */
  5. {
  6. "$schema": "https://developer.microsoft.com/json-schemas/rush/v5/cobuild.schema.json",
  7. /**
  8. * (Required) EXPERIMENTAL - Set this to true to enable the cobuild feature.
  9. * RUSH_COBUILD_CONTEXT_ID should always be specified as an environment variable with an non-empty string,
  10. * otherwise the cobuild feature will be disabled.
  11. */
  12. "cobuildFeatureEnabled": false,
  13. /**
  14. * (Required) Choose where cobuild lock will be acquired.
  15. *
  16. * The lock provider is registered by the rush plugins.
  17. * For example, @rushstack/rush-redis-cobuild-plugin registers the "redis" lock provider.
  18. */
  19. "cobuildLockProvider": "redis"
  20. }