-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathnest-cli.json
executable file
·58 lines (58 loc) · 1.64 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/ignitionServer/src",
"monorepo": true,
"root": "apps/ignitionServer",
"compilerOptions": {
"webpack": false,
"tsConfigPath": "apps/ignitionServer/tsconfig.app.json"
},
"projects": {
"ignition-server": {
"type": "application",
"root": "apps/ignitionServer",
"entryFile": "main",
"sourceRoot": "apps/ignitionServer/src",
"compilerOptions": {
"tsConfigPath": "apps/ignitionServer/tsconfig.app.json"
}
},
"materials-server": {
"type": "application",
"root": "apps/materialsServer",
"entryFile": "main",
"sourceRoot": "apps/materialsServer/src",
"compilerOptions": {
"tsConfigPath": "apps/materialsServer/tsconfig.app.json"
}
},
"user-server": {
"type": "application",
"root": "apps/userServer",
"entryFile": "main",
"sourceRoot": "apps/userServer/src",
"compilerOptions": {
"tsConfigPath": "apps/userServer/tsconfig.app.json"
}
},
"devops-server": {
"type": "application",
"root": "apps/devopsServer",
"entryFile": "main",
"sourceRoot": "apps/devopsServer/src",
"compilerOptions": {
"tsConfigPath": "apps/devopsServer/tsconfig.app.json"
}
},
"common": {
"type": "library",
"root": "libs/common",
"entryFile": "index",
"sourceRoot": "libs/common/src",
"compilerOptions": {
"tsConfigPath": "libs/common/tsconfig.lib.json"
}
}
}
}