|
3 | 3 | "id": "SchematicsAngularApp",
|
4 | 4 | "title": "Angular Application Options Schema",
|
5 | 5 | "type": "object",
|
| 6 | + "description": "Generates a new app skeleton in the \"projects\" subfolder of the workspace.", |
6 | 7 | "properties": {
|
7 | 8 | "projectRoot": {
|
8 |
| - "description": "The root directory of the new application.", |
| 9 | + "description": "The root folder of the new app.", |
9 | 10 | "type": "string",
|
10 | 11 | "visible": false
|
11 | 12 | },
|
12 | 13 | "name": {
|
13 |
| - "description": "The name of the application.", |
| 14 | + "description": "The name of the new app.", |
14 | 15 | "type": "string",
|
15 | 16 | "$default": {
|
16 | 17 | "$source": "argv",
|
|
19 | 20 | "x-prompt": "What name would you like to use for the application?"
|
20 | 21 | },
|
21 | 22 | "experimentalIvy": {
|
22 |
| - "description": "EXPERIMENTAL: Specifies whether to create a new application which uses the Ivy rendering engine.", |
| 23 | + "description": "EXPERIMENTAL: True to create a new app that uses the Ivy rendering engine.", |
23 | 24 | "type": "boolean",
|
24 | 25 | "default": false
|
25 | 26 | },
|
26 | 27 | "inlineStyle": {
|
27 |
| - "description": "Specifies if the style will be in the ts file.", |
| 28 | + "description": "When true, includes styles in the TypeScript source file.", |
28 | 29 | "type": "boolean",
|
29 | 30 | "default": false,
|
30 | 31 | "alias": "s"
|
31 | 32 | },
|
32 | 33 | "inlineTemplate": {
|
33 |
| - "description": "Specifies if the template will be in the ts file.", |
| 34 | + "description": "When true, includes the template in the TypeScript source file.", |
34 | 35 | "type": "boolean",
|
35 | 36 | "default": false,
|
36 | 37 | "alias": "t"
|
37 | 38 | },
|
38 | 39 | "viewEncapsulation": {
|
39 |
| - "description": "Specifies the view encapsulation strategy.", |
| 40 | + "description": "The view encapsulation strategy to use in the new app.", |
40 | 41 | "enum": ["Emulated", "Native", "None", "ShadowDom"],
|
41 | 42 | "type": "string"
|
42 | 43 | },
|
43 | 44 | "routing": {
|
44 | 45 | "type": "boolean",
|
45 |
| - "description": "Generates a routing module.", |
| 46 | + "description": "When true, generates a routing module.", |
46 | 47 | "default": false
|
47 | 48 | },
|
48 | 49 | "prefix": {
|
49 | 50 | "type": "string",
|
50 | 51 | "format": "html-selector",
|
51 |
| - "description": "The prefix to apply to generated selectors.", |
| 52 | + "description": "A prefix to apply to generated selectors.", |
52 | 53 | "default": "app",
|
53 | 54 | "alias": "p"
|
54 | 55 | },
|
55 | 56 | "style": {
|
56 |
| - "description": "The file extension to be used for style files.", |
| 57 | + "description": "The file extension to use for style files.", |
57 | 58 | "type": "string",
|
58 | 59 | "default": "css"
|
59 | 60 | },
|
60 | 61 | "skipTests": {
|
61 |
| - "description": "Skip creating spec files.", |
| 62 | + "description": "When true, does not create spec test files for the app.", |
62 | 63 | "type": "boolean",
|
63 | 64 | "default": false,
|
64 | 65 | "alias": "S"
|
65 | 66 | },
|
66 | 67 | "skipPackageJson": {
|
67 | 68 | "type": "boolean",
|
68 | 69 | "default": false,
|
69 |
| - "description": "Do not add dependencies to package.json." |
| 70 | + "description": "When true, does not add dependencies to package.json." |
70 | 71 | },
|
71 | 72 | "minimal": {
|
72 |
| - "description": "Create a barebones project without any testing frameworks", |
| 73 | + "description": "When true, creates a bare-bones project without any testing frameworks.", |
73 | 74 | "type": "boolean",
|
74 | 75 | "default": false
|
75 | 76 | }
|
|
0 commit comments