source: trip-planner-front/node_modules/@angular/cli/commands/run.json@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.1 KB
Line 
1{
2 "$schema": "http://json-schema.org/draft-07/schema",
3 "$id": "ng-cli://commands/run.json",
4 "description": "Runs an Architect target with an optional custom builder configuration defined in your project.",
5 "$longDescription": "./run-long.md",
6
7 "$aliases": [],
8 "$scope": "in",
9 "$type": "architect",
10 "$impl": "./run-impl#RunCommand",
11
12 "type": "object",
13 "allOf": [
14 {
15 "properties": {
16 "target": {
17 "type": "string",
18 "description": "The Architect target to run.",
19 "$default": {
20 "$source": "argv",
21 "index": 0
22 }
23 },
24 "configuration": {
25 "description": "One or more named builder configurations as a comma-separated list as specified in the \"configurations\" section of angular.json.\nThe builder uses the named configurations to run the given target.\nFor more information, see https://angular.io/guide/workspace-config#alternate-build-configurations.",
26 "type": "string",
27 "aliases": ["c"]
28 }
29 },
30 "required": []
31 },
32 {
33 "$ref": "./definitions.json#/definitions/base"
34 }
35 ]
36}
Note: See TracBrowser for help on using the repository browser.