-
Notifications
You must be signed in to change notification settings - Fork 0
/
nest-cli.json
122 lines (122 loc) · 3.23 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/flights/src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"tsConfigPath": "apps/flights/tsconfig.app.json"
},
"projects": {
"persistence": {
"type": "library",
"root": "libs/persistence",
"entryFile": "index",
"sourceRoot": "libs/persistence/src",
"compilerOptions": {
"tsConfigPath": "libs/persistence/tsconfig.lib.json"
}
},
"flights": {
"type": "application",
"root": "apps/flights",
"entryFile": "main",
"sourceRoot": "apps/flights/src",
"compilerOptions": {
"tsConfigPath": "apps/flights/tsconfig.app.json"
}
},
"env": {
"type": "library",
"root": "libs/env",
"entryFile": "index",
"sourceRoot": "libs/env/src",
"compilerOptions": {
"tsConfigPath": "libs/env/tsconfig.lib.json"
}
},
"country": {
"type": "library",
"root": "libs/components/country",
"entryFile": "index",
"sourceRoot": "libs/components/country/src",
"compilerOptions": {
"tsConfigPath": "libs/components/country/tsconfig.lib.json"
}
},
"airport": {
"type": "library",
"root": "libs/components/airport",
"entryFile": "index",
"sourceRoot": "libs/components/airport/src",
"compilerOptions": {
"tsConfigPath": "libs/components/airport/tsconfig.lib.json"
}
},
"flight": {
"type": "library",
"root": "libs/components/flight",
"entryFile": "index",
"sourceRoot": "libs/components/flight/src",
"compilerOptions": {
"tsConfigPath": "libs/components/flight/tsconfig.lib.json"
}
},
"user": {
"type": "library",
"root": "libs/components/user",
"entryFile": "index",
"sourceRoot": "libs/components/user/src",
"compilerOptions": {
"tsConfigPath": "libs/components/user/tsconfig.lib.json"
}
},
"auth": {
"type": "library",
"root": "libs/auth",
"entryFile": "index",
"sourceRoot": "libs/auth/src",
"compilerOptions": {
"tsConfigPath": "libs/auth/tsconfig.lib.json"
}
},
"data-provider": {
"type": "library",
"root": "libs/data-provider",
"entryFile": "index",
"sourceRoot": "libs/data-provider/src",
"compilerOptions": {
"tsConfigPath": "libs/data-provider/tsconfig.lib.json"
}
},
"cache": {
"type": "library",
"root": "libs/cache",
"entryFile": "index",
"sourceRoot": "libs/cache/src",
"compilerOptions": {
"tsConfigPath": "libs/cache/tsconfig.lib.json"
}
},
"logger": {
"type": "library",
"root": "libs/logger",
"entryFile": "index",
"sourceRoot": "libs/logger/src",
"compilerOptions": {
"tsConfigPath": "libs/logger/tsconfig.lib.json"
}
},
"graphql": {
"type": "library",
"root": "libs/graphql",
"entryFile": "index",
"sourceRoot": "libs/graphql/src",
"compilerOptions": {
"tsConfigPath": "libs/graphql/tsconfig.lib.json"
}
}
},
"monorepo": true,
"root": "apps/flights"
}