-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnest-cli.json
77 lines (77 loc) · 1.94 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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/corpus/src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"tsConfigPath": "apps/corpus/tsconfig.app.json"
},
"monorepo": true,
"root": "apps/corpus",
"projects": {
"corpus": {
"type": "application",
"root": "apps/corpus",
"entryFile": "main",
"sourceRoot": "apps/corpus/src/infrastructure",
"compilerOptions": {
"tsConfigPath": "apps/corpus/tsconfig.app.json"
}
},
"admin": {
"type": "application",
"root": "apps/admin",
"entryFile": "main",
"sourceRoot": "apps/admin/src/infrastructure",
"compilerOptions": {
"tsConfigPath": "apps/admin/tsconfig.app.json"
}
},
"postgres": {
"type": "library",
"root": "libs/postgres",
"entryFile": "index",
"sourceRoot": "libs/postgres/src",
"compilerOptions": {
"tsConfigPath": "libs/postgres/tsconfig.lib.json"
}
},
"oauth": {
"type": "library",
"root": "libs/oauth",
"entryFile": "index",
"sourceRoot": "libs/oauth/src",
"compilerOptions": {
"tsConfigPath": "libs/oauth/tsconfig.lib.json"
}
},
"jwt": {
"type": "library",
"root": "libs/jwt",
"entryFile": "index",
"sourceRoot": "libs/jwt/src",
"compilerOptions": {
"tsConfigPath": "libs/jwt/tsconfig.lib.json"
}
},
"cookies": {
"type": "library",
"root": "libs/cookies",
"entryFile": "index",
"sourceRoot": "libs/cookies/src",
"compilerOptions": {
"tsConfigPath": "libs/cookies/tsconfig.lib.json"
}
},
"redis": {
"type": "library",
"root": "libs/redis",
"entryFile": "index",
"sourceRoot": "libs/redis/src",
"compilerOptions": {
"tsConfigPath": "libs/redis/tsconfig.lib.json"
}
}
}
}