source: trip-planner-front/node_modules/@angular/cli/commands/new.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: 965 bytes
Line 
1{
2 "$schema": "http://json-schema.org/draft-07/schema",
3 "$id": "ng-cli://commands/new.json",
4 "description": "Creates a new workspace and an initial Angular application.",
5 "$longDescription": "./new.md",
6
7 "$aliases": ["n"],
8 "$scope": "out",
9 "$type": "schematic",
10 "$impl": "./new-impl#NewCommand",
11
12 "type": "object",
13 "allOf": [
14 {
15 "properties": {
16 "collection": {
17 "type": "string",
18 "aliases": ["c"],
19 "description": "A collection of schematics to use in generating the initial application."
20 },
21 "verbose": {
22 "type": "boolean",
23 "default": false,
24 "aliases": ["v"],
25 "description": "Add more details to output logging."
26 }
27 },
28 "required": []
29 },
30 { "$ref": "./definitions.json#/definitions/base" },
31 { "$ref": "./definitions.json#/definitions/schematic" },
32 { "$ref": "./definitions.json#/definitions/interactive" }
33 ]
34}
Note: See TracBrowser for help on using the repository browser.