source: trip-planner-front/node_modules/@schematics/angular/collection.json@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 3.4 KB
Line 
1{
2 "schematics": {
3 "ng-new": {
4 "factory": "./ng-new",
5 "schema": "./ng-new/schema.json",
6 "description": "Create an Angular workspace.",
7 "hidden": true
8 },
9 "workspace": {
10 "factory": "./workspace",
11 "schema": "./workspace/schema.json",
12 "description": "Create an Angular workspace.",
13 "hidden": true
14 },
15 "service-worker": {
16 "aliases": ["serviceWorker"],
17 "factory": "./service-worker",
18 "description": "Initializes a service worker setup.",
19 "schema": "./service-worker/schema.json"
20 },
21 "application": {
22 "aliases": ["app"],
23 "factory": "./application",
24 "schema": "./application/schema.json",
25 "description": "Create an Angular application."
26 },
27 "e2e": {
28 "factory": "./e2e",
29 "schema": "./e2e/schema.json",
30 "description": "Create an Angular e2e application.",
31 "hidden": true
32 },
33 "class": {
34 "aliases": ["cl"],
35 "factory": "./class",
36 "description": "Create a class.",
37 "schema": "./class/schema.json"
38 },
39 "component": {
40 "aliases": ["c"],
41 "factory": "./component",
42 "description": "Create an Angular component.",
43 "schema": "./component/schema.json"
44 },
45 "directive": {
46 "aliases": ["d"],
47 "factory": "./directive",
48 "description": "Create an Angular directive.",
49 "schema": "./directive/schema.json"
50 },
51 "enum": {
52 "aliases": ["e"],
53 "factory": "./enum",
54 "description": "Create an enumeration.",
55 "schema": "./enum/schema.json"
56 },
57 "guard": {
58 "aliases": ["g"],
59 "factory": "./guard",
60 "description": "Create a guard.",
61 "schema": "./guard/schema.json"
62 },
63 "resolver": {
64 "aliases": ["r"],
65 "factory": "./resolver",
66 "description": "Create a resolver.",
67 "schema": "./resolver/schema.json"
68 },
69 "interceptor": {
70 "factory": "./interceptor",
71 "description": "Create an interceptor.",
72 "schema": "./interceptor/schema.json"
73 },
74 "interface": {
75 "aliases": ["i"],
76 "factory": "./interface",
77 "description": "Create an interface.",
78 "schema": "./interface/schema.json"
79 },
80 "module": {
81 "aliases": ["m"],
82 "factory": "./module",
83 "description": "Create an Angular module.",
84 "schema": "./module/schema.json"
85 },
86 "pipe": {
87 "aliases": ["p"],
88 "factory": "./pipe",
89 "description": "Create an Angular pipe.",
90 "schema": "./pipe/schema.json"
91 },
92 "service": {
93 "aliases": ["s"],
94 "factory": "./service",
95 "description": "Create an Angular service.",
96 "schema": "./service/schema.json"
97 },
98 "universal": {
99 "factory": "./universal",
100 "description": "Create an Angular universal app.",
101 "schema": "./universal/schema.json",
102 "hidden": true
103 },
104 "app-shell": {
105 "aliases": ["appShell"],
106 "factory": "./app-shell",
107 "description": "Create an app shell.",
108 "schema": "./app-shell/schema.json"
109 },
110 "library": {
111 "aliases": ["lib"],
112 "factory": "./library",
113 "schema": "./library/schema.json",
114 "description": "Generate a library project for Angular."
115 },
116 "web-worker": {
117 "aliases": ["webWorker"],
118 "factory": "./web-worker",
119 "schema": "./web-worker/schema.json",
120 "description": "Create a Web Worker."
121 }
122 }
123}
Note: See TracBrowser for help on using the repository browser.