-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnest-cli.json
76 lines (76 loc) · 1.93 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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "@app/books",
"monorepo": true,
"root": "apps/books",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/books/tsconfig.app.json"
},
"projects": {
"books": {
"type": "application",
"root": "apps/books",
"entryFile": "main",
"sourceRoot": "apps/books/src",
"compilerOptions": {
"tsConfigPath": "apps/books/tsconfig.app.json"
}
},
"users": {
"type": "application",
"root": "apps/users",
"entryFile": "main",
"sourceRoot": "apps/users/src",
"compilerOptions": {
"tsConfigPath": "apps/users/tsconfig.app.json"
}
},
"auth": {
"type": "library",
"root": "libs/auth",
"entryFile": "index",
"sourceRoot": "libs/auth/src",
"compilerOptions": {
"tsConfigPath": "libs/auth/tsconfig.lib.json"
}
},
"shared": {
"type": "library",
"root": "libs/shared",
"entryFile": "index",
"sourceRoot": "libs/shared/src",
"compilerOptions": {
"tsConfigPath": "libs/shared/tsconfig.lib.json"
}
},
"messenger-clients": {
"type": "library",
"root": "libs/messenger-clients",
"entryFile": "index",
"sourceRoot": "libs/messenger-clients/src",
"compilerOptions": {
"tsConfigPath": "libs/messenger-clients/tsconfig.lib.json"
}
},
"test-utils": {
"type": "library",
"root": "libs/test-utils",
"entryFile": "index",
"sourceRoot": "libs/test-utils/src",
"compilerOptions": {
"tsConfigPath": "libs/test-utils/tsconfig.lib.json"
}
},
"otel": {
"type": "library",
"root": "libs/otel",
"entryFile": "index",
"sourceRoot": "libs/otel/src",
"compilerOptions": {
"tsConfigPath": "libs/otel/tsconfig.lib.json"
}
}
}
}