-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnest-cli.json
89 lines (89 loc) · 2.15 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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/api/src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"assets": [
"**/*.proto"
],
"watchAssets": true
},
"projects": {
"common": {
"type": "library",
"root": "libs/common",
"entryFile": "index",
"sourceRoot": "libs/common/src",
"compilerOptions": {
"tsConfigPath": "libs/common/tsconfig.lib.json"
}
},
"api": {
"type": "application",
"root": "apps/api",
"entryFile": "main",
"sourceRoot": "apps/api/src",
"compilerOptions": {
"tsConfigPath": "apps/api/tsconfig.app.json"
}
},
"swap": {
"type": "application",
"root": "apps/swap",
"entryFile": "main",
"sourceRoot": "apps/swap/src",
"compilerOptions": {
"tsConfigPath": "apps/swap/tsconfig.app.json"
}
},
"nostr": {
"type": "application",
"root": "apps/nostr",
"entryFile": "main",
"sourceRoot": "apps/nostr/src",
"compilerOptions": {
"tsConfigPath": "apps/nostr/tsconfig.app.json"
}
},
"sms": {
"type": "application",
"root": "apps/sms",
"entryFile": "main",
"sourceRoot": "apps/sms/src",
"compilerOptions": {
"tsConfigPath": "apps/sms/tsconfig.app.json"
}
},
"shares": {
"type": "application",
"root": "apps/shares",
"entryFile": "main",
"sourceRoot": "apps/shares/src",
"compilerOptions": {
"tsConfigPath": "apps/shares/tsconfig.app.json"
}
},
"solowallet": {
"type": "application",
"root": "apps/solowallet",
"entryFile": "main",
"sourceRoot": "apps/solowallet/src",
"compilerOptions": {
"tsConfigPath": "apps/solowallet/tsconfig.app.json"
}
},
"auth": {
"type": "application",
"root": "apps/auth",
"entryFile": "main",
"sourceRoot": "apps/auth/src",
"compilerOptions": {
"tsConfigPath": "apps/auth/tsconfig.app.json"
}
}
},
"monorepo": true,
"root": "apps/api"
}