-
Notifications
You must be signed in to change notification settings - Fork 5
/
nest-cli.json
72 lines (72 loc) · 1.62 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
{
"collection": "@nestjs/schematics",
"monorepo": true,
"compilerOptions": {
"webpack": true
},
"projects": {
"hiking-app": {
"type": "application",
"root": "apps/hiking-app",
"entryFile": "main",
"sourceRoot": "apps/hiking-app/src",
"compilerOptions": {
"tsConfigPath": "apps/hiking-app/tsconfig.app.json"
}
},
"projects-app": {
"type": "application",
"root": "apps/projects-app",
"entryFile": "main",
"sourceRoot": "apps/projects-app/src",
"compilerOptions": {
"tsConfigPath": "apps/projects-app/tsconfig.app.json"
}
},
"boostraper": {
"type": "library",
"root": "libs/boostraper",
"entryFile": "index",
"sourceRoot": "libs/boostraper/src",
"compilerOptions": {
"tsConfigPath": "libs/boostraper/tsconfig.lib.json"
}
},
"databases": {
"type": "library",
"root": "libs/databases",
"entryFile": "index",
"sourceRoot": "libs/databases/src",
"compilerOptions": {
"tsConfigPath": "libs/databases/tsconfig.lib.json"
}
},
"decorators": {
"type": "library",
"root": "libs/decorators",
"entryFile": "index",
"sourceRoot": "libs/decorators/src",
"compilerOptions": {
"tsConfigPath": "libs/decorators/tsconfig.lib.json"
}
},
"rxjs": {
"type": "library",
"root": "libs/rxjs",
"entryFile": "index",
"sourceRoot": "libs/rxjs/src",
"compilerOptions": {
"tsConfigPath": "libs/rxjs/tsconfig.lib.json"
}
},
"tests": {
"type": "library",
"root": "libs/tests",
"entryFile": "index",
"sourceRoot": "libs/tests/src",
"compilerOptions": {
"tsConfigPath": "libs/tests/tsconfig.lib.json"
}
}
}
}