UNPKG

958 BJSONView Raw
1{
2 "$schema": "http://json-schema.org/schema",
3 "$id": "ng-cli://commands/new.json",
4 "description": "Creates a new workspace and an initial Angular app.",
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 app."
20 },
21 "verbose": {
22 "type": "boolean",
23 "default": false,
24 "aliases": [ "v" ],
25 "description": "When true, adds 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}