-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnest-cli.json
85 lines (85 loc) · 2.16 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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/api-main/src",
"monorepo": true,
"compilerOptions": {
"deleteOutDir": true,
"webpack": false,
"tsConfigPath": "apps/api-main/tsconfig.app.json"
},
"projects": {
"api-main": {
"type": "application",
"root": "apps/api-main",
"entryFile": "main",
"sourceRoot": "apps/api-main/src",
"compilerOptions": {
"tsConfigPath": "apps/api-main/tsconfig.app.json"
}
},
"processor": {
"type": "application",
"root": "apps/processor",
"entryFile": "main",
"sourceRoot": "apps/processor/src",
"compilerOptions": {
"tsConfigPath": "apps/processor/tsconfig.app.json"
}
},
"common": {
"type": "library",
"root": "libs/common",
"entryFile": "index",
"sourceRoot": "libs/common/src",
"compilerOptions": {
"tsConfigPath": "libs/common/tsconfig.lib.json"
}
},
"core": {
"type": "library",
"root": "libs/core",
"entryFile": "index",
"sourceRoot": "libs/core/src",
"compilerOptions": {
"tsConfigPath": "libs/core/tsconfig.lib.json"
}
},
"datalayer": {
"type": "library",
"root": "libs/datalayer",
"entryFile": "index",
"sourceRoot": "libs/datalayer/src",
"compilerOptions": {
"tsConfigPath": "libs/datalayer/tsconfig.lib.json"
}
},
"database": {
"type": "library",
"root": "libs/database",
"entryFile": "index",
"sourceRoot": "libs/database/src",
"compilerOptions": {
"tsConfigPath": "libs/database/tsconfig.lib.json"
}
},
"config": {
"type": "library",
"root": "libs/config",
"entryFile": "index",
"sourceRoot": "libs/config/src",
"compilerOptions": {
"tsConfigPath": "libs/config/tsconfig.lib.json"
}
},
"units": {
"type": "library",
"root": "libs/units",
"entryFile": "index",
"sourceRoot": "libs/units/src",
"compilerOptions": {
"tsConfigPath": "libs/units/tsconfig.lib.json"
}
}
}
}