-
Notifications
You must be signed in to change notification settings - Fork 1
/
nest-cli.json
94 lines (94 loc) · 2.33 KB
/
nest-cli.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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/api/src",
"monorepo": true,
"root": "apps/api",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/api/tsconfig.app.json"
},
"projects": {
"api": {
"type": "application",
"root": "apps/api",
"entryFile": "main",
"sourceRoot": "apps/api/src",
"compilerOptions": {
"tsConfigPath": "apps/api/tsconfig.app.json"
}
},
"m-pesa": {
"type": "application",
"root": "apps/m-pesa",
"entryFile": "main",
"sourceRoot": "apps/m-pesa/src",
"compilerOptions": {
"tsConfigPath": "apps/m-pesa/tsconfig.app.json"
}
},
"common": {
"type": "library",
"root": "libs/common",
"entryFile": "index",
"sourceRoot": "libs/common/src",
"compilerOptions": {
"tsConfigPath": "libs/common/tsconfig.lib.json"
}
},
"auth": {
"type": "application",
"root": "apps/auth",
"entryFile": "main",
"sourceRoot": "apps/auth/src",
"compilerOptions": {
"tsConfigPath": "apps/auth/tsconfig.app.json"
}
},
"tigopesa": {
"type": "application",
"root": "apps/tigopesa",
"entryFile": "main",
"sourceRoot": "apps/tigopesa/src",
"compilerOptions": {
"tsConfigPath": "apps/tigopesa/tsconfig.app.json"
}
},
"airtel": {
"type": "application",
"root": "apps/airtel",
"entryFile": "main",
"sourceRoot": "apps/airtel/src",
"compilerOptions": {
"tsConfigPath": "apps/airtel/tsconfig.app.json"
}
},
"mno": {
"type": "application",
"root": "apps/mno",
"entryFile": "main",
"sourceRoot": "apps/mno/src",
"compilerOptions": {
"tsConfigPath": "apps/mno/tsconfig.app.json"
}
},
"dpo": {
"type": "application",
"root": "apps/dpo",
"entryFile": "main",
"sourceRoot": "apps/dpo/src",
"compilerOptions": {
"tsConfigPath": "apps/dpo/tsconfig.app.json"
}
},
"t-pay": {
"type": "application",
"root": "apps/t-pay",
"entryFile": "main",
"sourceRoot": "apps/t-pay/src",
"compilerOptions": {
"tsConfigPath": "apps/t-pay/tsconfig.app.json"
}
}
}
}