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
|
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100755
index 0000000000000000000000000000000000000000..96122674e2d63396dd0b10c0bf104d240a8612b3
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,37 @@
+{
+ "version": "0.2.0",
+ // List of configurations. Add new configurations or edit existing ones.
+ "configurations": [
+ {
+ "type": "extensionHost",
+ "request": "launch",
+ "name": "Launch Client",
+ "runtimeExecutable": "${execPath}",
+ "args": ["--extensionDevelopmentPath=${workspaceRoot}"],
+ "stopOnEntry": false,
+ "sourceMaps": true,
+ "outFiles": ["${workspaceRoot}/dist/extension/**/*.js"],
+ // "preLaunchTask": "npm: dev"
+ },
+ {
+ "type": "node",
+ "request": "attach",
+ "name": "Attach to Server 6011",
+ "address": "localhost",
+ "protocol": "inspector",
+ "port": 6011,
+ "sourceMaps": true,
+ "outFiles": ["${workspaceRoot}/dist/server/**/*.js"]
+ },
+ {
+ "type": "node",
+ "request": "attach",
+ "name": "Attach to Server 6012",
+ "address": "localhost",
+ "protocol": "inspector",
+ "port": 6012,
+ "sourceMaps": true,
+ "outFiles": ["${workspaceRoot}/dist/server/**/*.js"]
+ }
+ ]
+}
|