-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcollection.json
More file actions
81 lines (81 loc) · 1.8 KB
/
collection.json
File metadata and controls
81 lines (81 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"schematics": {
"application": {
"factory": "./application",
"schema": "./application/schema.json",
"description": "Create an Angular application."
},
"class": {
"factory": "./class",
"description": "Create a class.",
"schema": "./class/schema.json"
},
"cl": {
"extends": "class"
},
"component": {
"factory": "./component",
"description": "Create an Angular component.",
"schema": "./component/schema.json"
},
"c": {
"extends": "component"
},
"directive": {
"factory": "./directive",
"description": "Create an Angular directive.",
"schema": "./directive/schema.json"
},
"d": {
"extends": "directive"
},
"enum": {
"factory": "./enum",
"description": "Create an enumeration.",
"schema": "./enum/schema.json"
},
"e": {
"extends": "enum"
},
"guard": {
"factory": "./guard",
"description": "Create a guard.",
"schema": "./guard/schema.json"
},
"g": {
"extends": "guard"
},
"interface": {
"factory": "./interface",
"description": "Create an interface.",
"schema": "./interface/schema.json"
},
"i": {
"extends": "interface"
},
"module": {
"factory": "./module",
"description": "Create an Angular module.",
"schema": "./module/schema.json"
},
"m": {
"extends": "module"
},
"pipe": {
"factory": "./pipe",
"description": "Create an Angular pipe.",
"schema": "./pipe/schema.json"
},
"p": {
"extends": "pipe"
},
"service": {
"factory": "./service",
"description": "Create an Angular service.",
"schema": "./service/schema.json"
},
"s": {
"extends": "service"
}
}
}