-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfishing-map-focused.code-workspace
More file actions
85 lines (85 loc) · 2.32 KB
/
Copy pathfishing-map-focused.code-workspace
File metadata and controls
85 lines (85 loc) · 2.32 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
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
85
{
"folders": [
{
"path": ".",
},
],
"settings": {
"js/ts.tsdk.path": "node_modules/typescript/lib",
"js/ts.tsdk.promptToUseWorkspaceVersion": true,
"js/ts.tsserver.maxMemory": 16384,
"js/ts.tsserver.experimental.enableProjectDiagnostics": false,
"js/ts.tsserver.automaticTypeAcquisition.enabled": false,
"js/ts.tsserver.watchOptions": {
"watchFile": "useFsEventsOnParentDirectory",
"watchDirectory": "useFsEvents",
"fallbackPolling": "dynamicPriorityPolling",
"excludeDirectories": [
"**/node_modules",
"**/.next",
"**/.nitro",
"**/dist",
"**/.nx",
"**/coverage",
"**/.turbo",
"**/build",
"**/out",
"**/exported",
"**/tmp",
"**/cypress",
"**/e2e",
],
"excludeFiles": [
"**/*.spec.ts",
"**/*.spec.tsx",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.tsbuildinfo",
"**/i18n.types.d.ts",
],
},
"js/ts.preferences.includePackageJsonAutoImports": "off",
"js/ts.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,
},
"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,
"**/.nitro": 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,
"**/build/**": true,
"**/dist/**": true,
"**/.nx/**": true,
"**/.turbo/**": true,
"**/coverage/**": true,
"**/*.tsbuildinfo": true,
"**/out/**": true,
"**/exported/**": true,
"**/tmp/**": true,
},
},
}