"serve": {
"type": "object",
"description": "Properties to be passed to the serve command.",
"properties": {
"port": {
"type": "number",
"description": "The port the application will be served on.",
"default": 4200
},
"host": {
"type": "string",
"description": "The host the application will be served on.",
"default": "localhost"
},
"ssl": {
"type": "boolean",
"description": "Enables ssl for the application.",
"default": false
},
"sslKey": {
"type": "string",
"description": "The ssl key used by the server.",
"default": "ssl/server.key"
},
"sslCert": {
"type": "string",
"description": "The ssl certificate used by the server.",
"default": "ssl/server.crt"
},
"proxyConfig": {
"type": "string",
"description": "Proxy configuration file."
}
}
}https://raw.githubusercontent.com/angular/angular-cli/master/packages/@angular/cli/lib/config/schema.json (487:16)