-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnest-cli.json
More file actions
57 lines (57 loc) · 1.48 KB
/
nest-cli.json
File metadata and controls
57 lines (57 loc) · 1.48 KB
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
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/task-tracker/src",
"monorepo": true,
"root": "apps/task-tracker",
"compilerOptions": {
"tsConfigPath": "apps/task-tracker/tsconfig.app.json",
"webpack": true
},
"projects": {
"task-tracker": {
"type": "application",
"root": "apps/task-tracker",
"entryFile": "main",
"sourceRoot": "apps/task-tracker/src",
"compilerOptions": {
"tsConfigPath": "apps/task-tracker/tsconfig.app.json"
}
},
"auth": {
"type": "application",
"root": "apps/auth",
"entryFile": "main",
"sourceRoot": "apps/auth/src",
"compilerOptions": {
"tsConfigPath": "apps/auth/tsconfig.app.json"
}
},
"common": {
"type": "library",
"root": "libs/common",
"entryFile": "index",
"sourceRoot": "libs/common/src",
"compilerOptions": {
"tsConfigPath": "libs/common/tsconfig.lib.json"
}
},
"accounting": {
"type": "application",
"root": "apps/accounting",
"entryFile": "main",
"sourceRoot": "apps/accounting/src",
"compilerOptions": {
"tsConfigPath": "apps/accounting/tsconfig.app.json"
}
},
"schema-registry": {
"type": "library",
"root": "libs/schema-registry",
"entryFile": "index",
"sourceRoot": "libs/schema-registry/src",
"compilerOptions": {
"tsConfigPath": "libs/schema-registry/tsconfig.lib.json"
}
}
}
}