-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcollection.json
executable file
·35 lines (35 loc) · 1.5 KB
/
collection.json
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
{
"$schema": "./node_modules/@angular-devkit/schematics/collection-schema.json",
"schematics": {
"auth-module": {
"description": "Schematic to generate a Authentication module.",
"factory": "./lib/schematics/auth-module/auth-module.factory#main",
"schema": "./lib/schematics/auth-module/schema.json"
},
"graphql-module": {
"description": "Schematic to generate a GraphQL module.",
"factory": "./lib/schematics/graphql-module/graphql-module.factory#main",
"schema": "./lib/schematics/graphql-module/schema.json"
},
"mongoose-module": {
"description": "Schematic to generate a Mongoose module.",
"factory": "./lib/schematics/mongoose-module/mongoose-module.factory#main",
"schema": "./lib/schematics/mongoose-module/schema.json"
},
"prisma-module": {
"description": "Schematic to generate a Prisma module.",
"factory": "./lib/schematics/prisma-module/prisma-module.factory#main",
"schema": "./lib/schematics/prisma-module/schema.json"
},
"typeorm-module": {
"description": "Schematic to generate a TypeORM module.",
"factory": "./lib/schematics/typeorm-module/typeorm-module.factory#main",
"schema": "./lib/schematics/typeorm-module/schema.json"
},
"sequelize-module": {
"description": "Schematic to generate a Sequelize module.",
"factory": "./lib/schematics/sequelize-module/sequelize-module.factory#main",
"schema": "./lib/schematics/sequelize-module/schema.json"
}
}
}