schema.json 530 B

123456789101112131415161718
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema",
  3. "$id": "SchematicsAngularAppShell",
  4. "title": "Angular AppShell Options Schema",
  5. "type": "object",
  6. "description": "Configures your project to generate an app-shell during build time.",
  7. "additionalProperties": false,
  8. "properties": {
  9. "project": {
  10. "type": "string",
  11. "description": "The name of the project where the app-shell should be generated.",
  12. "$default": {
  13. "$source": "projectName"
  14. }
  15. }
  16. },
  17. "required": ["project"]
  18. }