diff --git a/packages/angular/cli/lib/config/schema.json b/packages/angular/cli/lib/config/schema.json index 2f3b91ee9e22..e51703aad570 100644 --- a/packages/angular/cli/lib/config/schema.json +++ b/packages/angular/cli/lib/config/schema.json @@ -1136,7 +1136,7 @@ "properties": { "browserTarget": { "type": "string", - "description": "Target to serve." + "description": "Build target to serve in the format of project-name:builder:config. Useful for when there are additional alternate configurations (such as stable, or archive that are used by AIO)." }, "port": { "type": "number", diff --git a/packages/angular_devkit/build_angular/src/dev-server/schema.json b/packages/angular_devkit/build_angular/src/dev-server/schema.json index 64ec242d274e..071b23ea4708 100644 --- a/packages/angular_devkit/build_angular/src/dev-server/schema.json +++ b/packages/angular_devkit/build_angular/src/dev-server/schema.json @@ -6,7 +6,7 @@ "properties": { "browserTarget": { "type": "string", - "description": "Target to serve.", + "description": "Build target to serve in the format of project-name:builder:config. Useful for when there are additional alternate configurations (such as stable, or archive that are used by AIO).", "pattern": "^[^:\\s]+:[^:\\s]+(:[^\\s]+)?$" }, "port": {