-
Notifications
You must be signed in to change notification settings - Fork 1
/
nest-cli.json
50 lines (50 loc) · 1.25 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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "lib",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"tsConfigPath": "./tsconfig.json"
},
"monorepo": true,
"root": "",
"projects": {
"init-config": {
"type": "application",
"root": "lib/common/config",
"entryFile": "init",
"sourceRoot": "lib/common/config",
"compilerOptions": {
"tsConfigPath": "lib/common/config/tsconfig.app.json"
}
},
"core": {
"type": "library",
"root": "lib",
"entryFile": "index",
"sourceRoot": "lib",
"compilerOptions": {
"tsConfigPath": "lib/tsconfig.lib.json"
}
},
"init-web-app": {
"type": "application",
"root": "examples/web-server",
"entryFile": "init",
"sourceRoot": "examples/web-server/src",
"compilerOptions": {
"tsConfigPath": "examples/web-server/tsconfig.app.json"
}
},
"web-app": {
"type": "application",
"root": "examples/web-server",
"entryFile": "main",
"sourceRoot": "examples/web-server/src",
"compilerOptions": {
"tsConfigPath": "examples/web-server/tsconfig.app.json"
}
}
}
}