mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 11:52:59 +03:00
39 lines
861 B
JSON
39 lines
861 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "java+",
|
|
"request": "launch",
|
|
"name": "Launch Enso File"
|
|
},
|
|
{
|
|
"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"
|
|
},
|
|
{
|
|
"type": "nativeimage",
|
|
"request": "launch",
|
|
"name": "Launch Native Image",
|
|
"nativeImagePath": "${workspaceFolder}/runner",
|
|
"args": "--run ${file}"
|
|
}
|
|
]
|
|
} |