-
Notifications
You must be signed in to change notification settings - Fork 1
/
nest-cli.json
46 lines (46 loc) · 1.18 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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"projects": {
"database": {
"type": "library",
"root": "libs/api/database",
"entryFile": "index",
"sourceRoot": "libs/api/database/src",
"compilerOptions": {
"tsConfigPath": "libs/api/database/tsconfig.lib.json"
}
},
"interfaces": {
"type": "library",
"root": "libs/shared/interfaces",
"entryFile": "index",
"sourceRoot": "libs/shared/interfaces/src",
"compilerOptions": {
"tsConfigPath": "libs/shared/interfaces/tsconfig.lib.json"
}
},
"enum": {
"type": "library",
"root": "libs/shared/enum",
"entryFile": "index",
"sourceRoot": "libs/shared/enum/src",
"compilerOptions": {
"tsConfigPath": "libs/shared/enum/tsconfig.lib.json"
}
},
"graphql": {
"type": "library",
"root": "libs/api/graphql",
"entryFile": "index",
"sourceRoot": "libs/api/graphql/src",
"compilerOptions": {
"tsConfigPath": "libs/api/graphql/tsconfig.lib.json"
}
}
},
"compilerOptions": {
"webpack": true
}
}