serve.json 678 B

1234567891011121314151617181920212223242526
  1. {
  2. "$schema": "http://json-schema.org/schema",
  3. "$id": "ng-cli://commands/serve.json",
  4. "description": "Builds and serves your app, rebuilding on file changes.",
  5. "$longDescription": "",
  6. "$aliases": [ "s" ],
  7. "$scope": "in",
  8. "$type": "architect",
  9. "$impl": "./serve-impl#ServeCommand",
  10. "type": "object",
  11. "allOf": [
  12. { "$ref": "./definitions.json#/definitions/architect" },
  13. { "$ref": "./definitions.json#/definitions/base" },
  14. {
  15. "type": "object",
  16. "properties": {
  17. "buildEventLog": {
  18. "type": "string",
  19. "description": "**EXPERIMENTAL** Output file path for Build Event Protocol events"
  20. }
  21. }
  22. }
  23. ]
  24. }