-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgym-app.code-workspace
76 lines (76 loc) · 1.2 KB
/
gym-app.code-workspace
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
{
"folders": [
{
"name": "gym-api",
"path": "apps/gym-api/src"
},
{
"name": "gym-api-e2e",
"path": "apps/gym-api-e2e/src"
},
{
"name": "gym-web-app",
"path": "apps/gym-web-app/src"
},
{
"name": "gym-web-app-e2e",
"path": "apps/gym-web-app-e2e/src"
},
{
"name": "auth-api",
"path": "libs/auth/api/src",
},
{
"name": "auth-web",
"path": "libs/auth/web/src",
},
{
"name": "shared-api",
"path": "libs/shared/api/src"
},
{
"name": "shared-web",
"path": "libs/shared/web/src"
},
{
"name": "user-api",
"path": "libs/user/api/src"
},
{
"name": "user-types",
"path": "libs/user/types/src"
},
{
"name": "user-web",
"path": "libs/user/web/src"
},
{
"name": "infra",
"path": "infra"
},
{
"path": "."
},
],
"settings": {
"eslint.enable": true,
"eslint.validate": [
"javascript",
"typescript",
"javascriptreact",
"typescriptreact"
],
"search.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/.nx": true
},
"files.exclude": {
".nx": true,
"dist": true,
"init-replica.sh": true,
"migrations.json": true,
},
"search.followSymlinks": false,
}
}