-
Notifications
You must be signed in to change notification settings - Fork 0
/
nest-cli.json
84 lines (84 loc) · 2.08 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/api/src",
"monorepo": true,
"root": "apps/api",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/api/tsconfig.app.json"
},
"projects": {
"api": {
"type": "application",
"root": "apps/api",
"entryFile": "main",
"sourceRoot": "apps/api/src",
"compilerOptions": {
"tsConfigPath": "apps/api/tsconfig.app.json"
}
},
"models": {
"type": "library",
"root": "libs/models",
"entryFile": "index",
"sourceRoot": "libs/models/src",
"compilerOptions": {
"tsConfigPath": "libs/models/tsconfig.lib.json"
}
},
"transactions": {
"type": "application",
"root": "apps/transactions",
"entryFile": "main",
"sourceRoot": "apps/transactions/src",
"compilerOptions": {
"tsConfigPath": "apps/transactions/tsconfig.app.json"
}
},
"items": {
"type": "library",
"root": "libs/items",
"entryFile": "index",
"sourceRoot": "libs/items/src",
"compilerOptions": {
"tsConfigPath": "libs/items/tsconfig.lib.json"
}
},
"plaid": {
"type": "library",
"root": "libs/plaid",
"entryFile": "index",
"sourceRoot": "libs/plaid/src",
"compilerOptions": {
"tsConfigPath": "libs/plaid/tsconfig.lib.json"
}
},
"auth": {
"type": "application",
"root": "apps/auth",
"entryFile": "main",
"sourceRoot": "apps/auth/src",
"compilerOptions": {
"tsConfigPath": "apps/auth/tsconfig.app.json"
}
},
"accounts": {
"type": "library",
"root": "libs/accounts",
"entryFile": "index",
"sourceRoot": "libs/accounts/src",
"compilerOptions": {
"tsConfigPath": "libs/accounts/tsconfig.lib.json"
}
},
"clients": {
"type": "library",
"root": "libs/clients",
"entryFile": "index",
"sourceRoot": "libs/clients/src",
"compilerOptions": {
"tsConfigPath": "libs/clients/tsconfig.lib.json"
}
}
}
}