-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnest-cli.json
65 lines (65 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
59
60
61
62
63
64
65
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true
},
"projects": {
"commons": {
"type": "library",
"root": "libs/commons",
"entryFile": "index",
"sourceRoot": "libs/commons/src",
"compilerOptions": {
"tsConfigPath": "libs/commons/tsconfig.lib.json"
}
},
"execute": {
"type": "library",
"root": "libs/execute",
"entryFile": "index",
"sourceRoot": "libs/execute/src",
"compilerOptions": {
"tsConfigPath": "libs/execute/tsconfig.lib.json"
}
},
"scenarioSnapshot": {
"type": "library",
"root": "libs/scenarioSnapshot",
"entryFile": "index",
"sourceRoot": "libs/scenarioSnapshot/src",
"compilerOptions": {
"tsConfigPath": "libs/scenarioSnapshot/tsconfig.lib.json"
}
},
"schemas": {
"type": "library",
"root": "libs/schemas",
"entryFile": "index",
"sourceRoot": "libs/schemas/src",
"compilerOptions": {
"tsConfigPath": "libs/schemas/tsconfig.lib.json"
}
},
"strategy": {
"type": "library",
"root": "libs/strategy",
"entryFile": "index",
"sourceRoot": "libs/strategy/src",
"compilerOptions": {
"tsConfigPath": "libs/strategy/tsconfig.lib.json"
}
},
"check": {
"type": "library",
"root": "libs/check",
"entryFile": "index",
"sourceRoot": "libs/check/src",
"compilerOptions": {
"tsConfigPath": "libs/check/tsconfig.lib.json"
}
}
}
}