Skip to content

Commit 48f1fb3

Browse files
Add java debugging config
1 parent bec13f9 commit 48f1fb3

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.vscode/launch.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "java",
9+
"name": "Attach to Remote Program",
10+
"request": "attach",
11+
"hostName": "localhost",
12+
"port": "5005"
13+
},
14+
{
15+
"type": "java",
16+
"name": "Attach to Remote Program",
17+
"request": "attach",
18+
"hostName": "localhost",
19+
"port": "5005"
20+
}
21+
]
22+
}

0 commit comments

Comments
 (0)