aboutsummaryrefslogtreecommitdiffhomepage
path: root/monkeytype.code-workspace
blob: 4bd7c6ed913e0867d974c1a384798f578ef7d0d0 (plain)
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
{
  "folders": [
    {
      "name": "backend",
      "path": "backend"
    },
    {
      "name": "frontend",
      "path": "frontend"
    },
    {
      "name": "shared-types",
      "path": "shared-types"
    },
    {
      "name": "root",
      "path": "./"
    }
  ],
  "settings": {
    "files.exclude": {
      "frontend": true,
      "backend": true,
      "shared-types": true
    },
    "search.exclude": {
      //defaults
      "**/node_modules": true,
      "**/bower_components": true,
      "**/*.code-search": true,
      //exclude generated directories
      "**/build/**": true,
      "**/dist/**": true,
      "**/public/**": true,
      "**/coverage/**": true
    },
    "editor.defaultFormatter": "esbenp.prettier-vscode",
    "editor.formatOnSaveMode": "file",
    "editor.formatOnSave": true,
    "testing.openTesting": "neverOpen"
  },

  "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": []
  }
}