We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4f83cf commit b5f1225Copy full SHA for b5f1225
2 files changed
.gitignore
@@ -72,6 +72,7 @@ node_modules_bak/
72
.vscode/*
73
.vscode/.*
74
!.vscode/extensions.json
75
+!.vscode/launch.json
76
*.code-workspace
77
!monkeytype.code-workspace
78
.vscode/launch.json
@@ -0,0 +1,20 @@
1
+{
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "type": "node",
6
+ "request": "attach",
7
+ "name": "Debug attach backend",
8
+ "port": 9229,
9
+ "skipFiles": ["<node_internals>/**"]
10
+ },
11
12
+ "name": "Vite Debugger",
13
+ "type": "chrome",
14
+ "request": "launch",
15
+ "port": 9222,
16
+ "url": "http://localhost:3000",
17
+ "webRoot": "${workspaceFolder}/frontend/src"
18
+ }
19
+ ]
20
+}
0 commit comments