-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfishing-map-focused.code-workspace
More file actions
57 lines (57 loc) · 1.71 KB
/
fishing-map-focused.code-workspace
File metadata and controls
57 lines (57 loc) · 1.71 KB
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
{
"folders": [
{
"path": ".",
},
],
"settings": {
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"typescript.tsserver.maxTsServerMemory": 16384,
"typescript.tsserver.experimental.enableProjectDiagnostics": false,
"typescript.disableAutomaticTypeAcquisition": true,
"typescript.preferences.autoImportFileExcludePatterns": [
"apps/api-portal/**",
"apps/data-download-portal/**",
"apps/image-labeler/**",
"apps/port-labeler/**",
"apps/track-labeler/**",
"apps/user-groups-admin/**",
],
"javascript.preferences.autoImportFileExcludePatterns": [
"apps/api-portal/**",
"apps/data-download-portal/**",
"apps/image-labeler/**",
"apps/port-labeler/**",
"apps/track-labeler/**",
"apps/user-groups-admin/**",
],
"files.exclude": {
"apps/api-portal": true,
"apps/data-download-portal": true,
"apps/image-labeler": true,
"apps/port-labeler": true,
"apps/track-labeler": true,
"apps/user-groups-admin": true,
"apps/fishing-map-e2e": true,
},
"search.exclude": {
"apps/api-portal": true,
"apps/data-download-portal": true,
"apps/image-labeler": true,
"apps/port-labeler": true,
"apps/track-labeler": true,
"apps/user-groups-admin": true,
"apps/fishing-map-e2e": true,
},
"files.watcherExclude": {
"apps/api-portal/**": true,
"apps/data-download-portal/**": true,
"apps/image-labeler/**": true,
"apps/port-labeler/**": true,
"apps/track-labeler/**": true,
"apps/user-groups-admin/**": true,
"apps/fishing-map-e2e/**": true,
},
},
}