UNPKG

678 BJSONView Raw
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
7 "$aliases": [ "s" ],
8 "$scope": "in",
9 "$type": "architect",
10 "$impl": "./serve-impl#ServeCommand",
11
12 "type": "object",
13 "allOf": [
14 { "$ref": "./definitions.json#/definitions/architect" },
15 { "$ref": "./definitions.json#/definitions/base" },
16 {
17 "type": "object",
18 "properties": {
19 "buildEventLog": {
20 "type": "string",
21 "description": "**EXPERIMENTAL** Output file path for Build Event Protocol events"
22 }
23 }
24 }
25 ]
26}