-
Notifications
You must be signed in to change notification settings - Fork 1
/
nest-cli.json
58 lines (58 loc) · 1.5 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
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/hangman-api/src",
"monorepo": true,
"root": "apps/hangman-api",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/hangman-api/tsconfig.app.json"
},
"projects": {
"hangman-api": {
"type": "application",
"root": "apps/hangman-api",
"entryFile": "main",
"sourceRoot": "apps/hangman-api/src",
"compilerOptions": {
"tsConfigPath": "apps/hangman-api/tsconfig.app.json"
}
},
"mailer": {
"type": "application",
"root": "apps/mailer",
"entryFile": "main",
"sourceRoot": "apps/mailer/src",
"compilerOptions": {
"tsConfigPath": "apps/mailer/tsconfig.app.json"
}
},
"setup": {
"type": "library",
"root": "libs/setup",
"entryFile": "index",
"sourceRoot": "libs/setup/src",
"compilerOptions": {
"tsConfigPath": "libs/setup/tsconfig.lib.json"
}
},
"config": {
"type": "library",
"root": "libs/config",
"entryFile": "index",
"sourceRoot": "libs/config/src",
"compilerOptions": {
"tsConfigPath": "libs/config/tsconfig.lib.json"
}
},
"mailer-client": {
"type": "library",
"root": "libs/mailer-client",
"entryFile": "index",
"sourceRoot": "libs/mailer-client/src",
"compilerOptions": {
"tsConfigPath": "libs/mailer-client/tsconfig.lib.json"
}
}
}
}