-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnest-cli.json
39 lines (39 loc) · 1007 Bytes
/
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
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/nest-transformer/src",
"projects": {
"core": {
"type": "library",
"root": "libs/core",
"entryFile": "index",
"sourceRoot": "libs/core/src",
"compilerOptions": {
"tsConfigPath": "libs/core/tsconfig.lib.json"
}
},
"kafka": {
"type": "library",
"root": "libs/kafka",
"entryFile": "index",
"sourceRoot": "libs/kafka/src",
"compilerOptions": {
"tsConfigPath": "libs/kafka/tsconfig.lib.json"
}
},
"nest-transformer": {
"type": "application",
"root": "apps/nest-transformer",
"entryFile": "main",
"sourceRoot": "apps/nest-transformer/src",
"compilerOptions": {
"tsConfigPath": "apps/nest-transformer/tsconfig.app.json"
}
}
},
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/nest-transformer/tsconfig.app.json"
},
"monorepo": true,
"root": "apps/nest-transformer"
}