schema.json 726 B

1234567891011121314151617181920212223
  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. "serverRouting": {
  17. "description": "Set up a server application using the Server Routing and App Engine APIs (Developer Preview).",
  18. "type": "boolean",
  19. "default": false
  20. }
  21. },
  22. "required": ["project"]
  23. }