forked from ionic-team/angular-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcollection.json
More file actions
71 lines (71 loc) · 1.71 KB
/
Copy pathcollection.json
File metadata and controls
71 lines (71 loc) · 1.71 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
{
"schematics": {
"page": {
"aliases": ["pg"],
"factory": "./schematics/page",
"description": "Create an Ionic page.",
"schema": "./schematics/page/schema.json"
},
"component": {
"aliases": ["c"],
"factory": "./schematics/component",
"description": "Create an Angular component.",
"schema": "./schematics/component/schema.json"
},
"class": {
"aliases": ["cl"],
"extends": "@schematics/angular:class"
},
"directive": {
"aliases": ["d"],
"extends": "@schematics/angular:directive"
},
"enum": {
"aliases": ["e"],
"extends": "@schematics/angular:enum"
},
"guard": {
"aliases": ["g"],
"extends": "@schematics/angular:guard"
},
"interface": {
"aliases": ["i"],
"extends": "@schematics/angular:interface"
},
"module": {
"aliases": ["m"],
"extends": "@schematics/angular:module"
},
"pipe": {
"aliases": ["p"],
"extends": "@schematics/angular:pipe"
},
"service": {
"aliases": ["s"],
"extends": "@schematics/angular:service"
},
"application": {
"aliases": ["app"],
"extends": "@schematics/angular:application"
},
"e2e": {
"extends": "@schematics/angular:e2e"
},
"library": {
"aliases": ["lib"],
"extends": "@schematics/angular:library"
},
"serviceWorker": {
"aliases": ["service-worker"],
"extends": "@schematics/angular:serviceWorker"
},
"appShell": {
"aliases": ["app-shell"],
"extends": "@schematics/angular:appShell"
},
"webWorker": {
"aliases": ["web-worker"],
"extends": "@schematics/angular:webWorker"
}
}
}