-
Notifications
You must be signed in to change notification settings - Fork 22
/
nest-cli.json
57 lines (57 loc) · 1.59 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
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/nest-typescript-starter/src",
"monorepo": true,
"root": "apps/nest-typescript-starter",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/nest-typescript-starter/tsconfig.app.json"
},
"projects": {
"nest-typescript-starter": {
"type": "application",
"root": "apps/nest-typescript-starter",
"entryFile": "main",
"sourceRoot": "apps/nest-typescript-starter/src",
"compilerOptions": {
"tsConfigPath": "apps/nest-typescript-starter/tsconfig.app.json"
}
},
"user-service": {
"type": "application",
"root": "apps/user-service",
"entryFile": "main",
"sourceRoot": "apps/user-service/src",
"compilerOptions": {
"tsConfigPath": "apps/user-service/tsconfig.app.json"
}
},
"notification": {
"type": "application",
"root": "apps/notification",
"entryFile": "main",
"sourceRoot": "apps/notification/src",
"compilerOptions": {
"tsConfigPath": "apps/notification/tsconfig.app.json"
}
},
"auth-service": {
"type": "application",
"root": "apps/auth-service",
"entryFile": "main",
"sourceRoot": "apps/auth-service/src",
"compilerOptions": {
"tsConfigPath": "apps/auth-service/tsconfig.app.json"
}
},
"auth-lib": {
"type": "library",
"root": "libs/auth-lib",
"entryFile": "index",
"sourceRoot": "libs/auth-lib/src",
"compilerOptions": {
"tsConfigPath": "libs/auth-lib/tsconfig.lib.json"
}
}
}
}