Skip to content

Commit a2b564c

Browse files
committed
Create launch.json
1 parent 91ce861 commit a2b564c

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.vscode/launch.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
"name": "Browse Lite: Attach",
9+
"type": "browse-lite",
10+
"request": "attach"
11+
},
12+
{
13+
"name": "Python Debugger: Current File",
14+
"type": "debugpy",
15+
"request": "launch",
16+
"program": "${file}",
17+
"console": "integratedTerminal"
18+
},
19+
{
20+
"name": "Browse Lite: Launch",
21+
"type": "browse-lite",
22+
"request": "launch",
23+
"url": "http://localhost:3000"
24+
}
25+
]
26+
}

0 commit comments

Comments
 (0)