-
Notifications
You must be signed in to change notification settings - Fork 0
/
nest-cli.json
58 lines (58 loc) · 1.44 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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/extractor/src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true
},
"projects": {
"extractor": {
"type": "application",
"root": "apps/extractor",
"entryFile": "main",
"sourceRoot": "apps/extractor/src",
"compilerOptions": {
"tsConfigPath": "apps/extractor/tsconfig.app.json"
}
},
"discourse": {
"type": "library",
"root": "libs/discourse",
"entryFile": "index",
"sourceRoot": "libs/discourse/src",
"compilerOptions": {
"tsConfigPath": "libs/discourse/tsconfig.lib.json"
}
},
"common": {
"type": "library",
"root": "libs/common",
"entryFile": "index",
"sourceRoot": "libs/common/src",
"compilerOptions": {
"tsConfigPath": "libs/common/tsconfig.lib.json"
}
},
"graph": {
"type": "application",
"root": "apps/graph",
"entryFile": "main",
"sourceRoot": "apps/graph/src",
"compilerOptions": {
"tsConfigPath": "apps/graph/tsconfig.app.json"
}
},
"mongo": {
"type": "application",
"root": "apps/mongo",
"entryFile": "main",
"sourceRoot": "apps/mongo/src",
"compilerOptions": {
"tsConfigPath": "apps/mongo/tsconfig.app.json"
}
}
},
"monorepo": true,
"root": "apps/extractor"
}