forked from monkeytypegame/monkeytype
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmonkeytype.code-workspace
More file actions
106 lines (105 loc) · 2.5 KB
/
monkeytype.code-workspace
File metadata and controls
106 lines (105 loc) · 2.5 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"folders": [
//root needs to be first
{
"name": "root",
"path": "./",
},
{
"name": "backend",
"path": "backend",
},
{
"name": "frontend",
"path": "frontend",
},
{
"name": "packages",
"path": "packages",
},
],
"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": "oxc.oxc-vscode",
"editor.formatOnSaveMode": "file",
"editor.formatOnSave": true,
"testing.automaticallyOpenTestResults": "neverOpen",
"vitest.maximumConfigs": 10,
"oxc.typeAware": true,
"typescript.format.enable": false,
"oxc.fmt.configPath": ".oxfmtrc-editor.json",
"oxc.fixKind": "safe_fix_or_suggestion",
"[json]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
},
"[html]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
},
"[scss]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
},
"[javascript]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
},
"[typescript]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
},
"[typescriptreact]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
},
"[javascriptreact]": {
"editor.defaultFormatter": "oxc.oxc-vscode",
},
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Backend: Attach",
"port": 9229,
"skipFiles": ["<node_internals>/**", "**/node_modules/**"],
},
{
"type": "chrome",
"request": "launch",
"name": "Frontend: Open and Attach",
"port": 9222,
"skipFiles": ["**/node_modules/**"],
"webRoot": "${workspaceFolder:frontend}/src",
"url": "http://localhost:3000",
},
],
"compounds": [],
},
"extensions": {
"recommendations": [
"esbenp.prettier-vscode",
"vitest.explorer",
"huntertran.auto-markdown-toc",
"dbaeumer.vscode-eslint",
"oxc.oxc-vscode",
"bradlc.vscode-tailwindcss",
"csstools.postcss",
],
},
}