source: trip-planner-front/node_modules/@angular/cli/commands/definitions.json@ 6a3a178

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

initial commit

  • Property mode set to 100644
File size: 2.4 KB
Line 
1{
2 "$schema": "http://json-schema.org/draft-07/schema",
3 "$id": "ng-cli://commands/definitions.json",
4
5 "definitions": {
6 "architect": {
7 "properties": {
8 "project": {
9 "type": "string",
10 "description": "The name of the project to build. Can be an application or a library.",
11 "$default": {
12 "$source": "argv",
13 "index": 0
14 }
15 },
16 "configuration": {
17 "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.\nSetting this explicitly overrides the \"--prod\" flag.",
18 "type": "string",
19 "aliases": ["c"]
20 },
21 "prod": {
22 "description": "Shorthand for \"--configuration=production\".\nSet the build configuration to the production target.\nBy default, the production target is set up in the workspace configuration such that all builds make use of bundling, limited tree-shaking, and also limited dead code elimination.",
23 "type": "boolean",
24 "x-deprecated": "Use `--configuration production` instead."
25 }
26 }
27 },
28 "base": {
29 "type": "object",
30 "properties": {
31 "help": {
32 "enum": [true, false, "json", "JSON"],
33 "description": "Shows a help message for this command in the console.",
34 "default": false
35 }
36 }
37 },
38 "schematic": {
39 "type": "object",
40 "properties": {
41 "dryRun": {
42 "type": "boolean",
43 "default": false,
44 "aliases": ["d"],
45 "description": "Run through and reports activity without writing out results."
46 },
47 "force": {
48 "type": "boolean",
49 "default": false,
50 "aliases": ["f"],
51 "description": "Force overwriting of existing files."
52 }
53 }
54 },
55 "interactive": {
56 "type": "object",
57 "properties": {
58 "interactive": {
59 "type": "boolean",
60 "default": "true",
61 "description": "Enable interactive input prompts."
62 },
63 "defaults": {
64 "type": "boolean",
65 "default": "false",
66 "description": "Disable interactive input prompts for options with a default."
67 }
68 }
69 }
70 }
71}
Note: See TracBrowser for help on using the repository browser.