-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
monkeytype.code-workspace
70 lines (69 loc) · 1.47 KB
/
monkeytype.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
{
"folders": [
{
"name": "backend",
"path": "backend"
},
{
"name": "frontend",
"path": "frontend"
},
{
"name": "packages",
"path": "packages"
},
{
"name": "root",
"path": "./"
}
],
"settings": {
"files.exclude": {
"frontend": true,
"backend": true,
"packages": true
},
"search.exclude": {
//defaults
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
//exclude generated directories
"**/build/**": true,
"**/dist/**": true,
"**/public/**": true,
"**/coverage/**": true,
"**/logs/**": true,
"**/.firebase/**": true,
"**/.turbo/**": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSaveMode": "file",
"editor.formatOnSave": true,
"testing.openTesting": "neverOpen",
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Debug attach backend",
"port": 9229,
"skipFiles": ["<node_internals>/**"]
},
{
"name": "Vite Debugger",
"type": "chrome",
"request": "launch",
"port": 9222,
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/frontend/src"
}
],
"compounds": []
}
}