-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathschematics.json
More file actions
22 lines (22 loc) · 708 Bytes
/
schematics.json
File metadata and controls
22 lines (22 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"schematics": {
"component": {
"factory": "./src/generators/component/component#componentSchematic",
"schema": "./src/generators/component/schema.json",
"aliases": ["c"],
"description": "Generate an Angular Component."
},
"directive": {
"factory": "./src/generators/directive/directive#directiveSchematic",
"schema": "./src/generators/directive/schema.json",
"aliases": ["d"],
"description": "Generate an Angular directive."
},
"pipe": {
"factory": "./src/generators/pipe/pipe#pipeSchematic",
"schema": "./src/generators/pipe/schema.json",
"description": "Generate an Angular Pipe",
"aliases": ["p"]
}
}
}