-
Notifications
You must be signed in to change notification settings - Fork 88
/
nest-cli.json
63 lines (63 loc) · 1.55 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
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/cats-api/src",
"monorepo": true,
"root": "apps/cats-api",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/cats-api/tsconfig.json"
},
"projects": {
"@app/cats-api": {
"type": "application",
"root": "apps/cats-api",
"entryFile": "main",
"sourceRoot": "apps/cats-api/src",
"compilerOptions": {
"tsConfigPath": "apps/cats-api/tsconfig.json"
}
},
"@app/auth-api": {
"type": "application",
"root": "apps/auth-api",
"entryFile": "main",
"sourceRoot": "apps/auth-api/src",
"compilerOptions": {
"tsConfigPath": "apps/auth-api/tsconfig.json"
}
},
"@tools/eslint.config": {
"type": "library",
"root": "tools/eslint",
"entryFile": ".eslintrc.json",
"sourceRoot": "tools/eslint"
},
"@libs/modules": {
"type": "library",
"root": "libs/modules",
"entryFile": "index",
"sourceRoot": "libs/modules",
"compilerOptions": {
"tsConfigPath": "libs/modules/tsconfig.json"
}
},
"@libs/core": {
"type": "library",
"root": "libs/core",
"entryFile": "index",
"sourceRoot": "libs/core",
"compilerOptions": {
"tsConfigPath": "libs/core/tsconfig.json"
}
},
"@libs/utils": {
"type": "library",
"root": "libs/utils",
"entryFile": "index",
"sourceRoot": "libs/utils",
"compilerOptions": {
"tsConfigPath": "libs/utils/tsconfig.json"
}
}
}
}