Skip to content

Commit 62d76d4

Browse files
committed
Added VS Code launch and settings files
1 parent 4ca1e3d commit 62d76d4

File tree

4 files changed

+41
-1
lines changed

4 files changed

+41
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ client/node_modules/
22
client/out/
33
client/server/
44
server/node_modules/
5-
.vscode/
65
.DS_Store

client/.vscode/launch.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// A launch configuration that launches the extension inside a new window
2+
{
3+
"version": "0.1.0",
4+
"configurations": [
5+
{
6+
"name": "Launch Extension",
7+
"type": "extensionHost",
8+
"request": "launch",
9+
"runtimeExecutable": "${execPath}",
10+
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
11+
"stopOnEntry": false,
12+
"sourceMaps": true,
13+
"outDir": "${workspaceRoot}/out"
14+
}
15+
]
16+
}

server/.vscode/launch.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"version": "0.1.0",
3+
"configurations": [
4+
{
5+
"name": "Attach",
6+
"type": "node",
7+
"request": "attach",
8+
"port": 6004,
9+
"sourceMaps": true,
10+
"outDir": "${workspaceRoot}/../client/server"
11+
},
12+
{
13+
"name": "Attach (cmd)",
14+
"type": "node",
15+
"request": "attach",
16+
"port": 5858,
17+
"sourceMaps": true,
18+
"outDir": "${workspaceRoot}/../client/server"
19+
}
20+
]
21+
}

server/.vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Place your settings in this file to overwrite default and user settings.
2+
{
3+
"typescript.tsdk": "./node_modules/typescript/lib"
4+
}

0 commit comments

Comments
 (0)