schema.json 487 B

123456789101112131415161718
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema",
  3. "$id": "SchematicsAngularEnvironment",
  4. "title": "Angular Environments Options Schema",
  5. "type": "object",
  6. "additionalProperties": false,
  7. "description": "Generates and configures environment files for a project.",
  8. "properties": {
  9. "project": {
  10. "type": "string",
  11. "description": "The name of the project.",
  12. "$default": {
  13. "$source": "projectName"
  14. }
  15. }
  16. },
  17. "required": ["project"]
  18. }