enso/.vscode/launch.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
671 B
JSON
Raw Normal View History

2023-09-23 10:15:24 +03:00
{
"version": "0.2.0",
"configurations": [
{
"type": "java+",
"request": "launch",
"name": "Launch Enso File"
},
2023-09-23 10:15:24 +03:00
{
"name": "Listen to 5005",
"type": "java+",
"request": "attach",
"listen": "true",
"hostName": "localhost",
"port": "5005"
},
{
"name": "Debug Adapter Protocol",
"type": "node",
"debugServer": 4711,
"request": "attach"
},
{
"type": "node-terminal",
"name": "Run Script: dev",
"request": "launch",
"command": "npm run dev",
// "env": {"NODE_OPTIONS": "--inspect"},
"cwd": "${workspaceFolder}/app/gui2"
2023-09-23 10:15:24 +03:00
}
]
}