2023-09-23 10:15:24 +03:00
|
|
|
{
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
2024-02-12 09:38:11 +03:00
|
|
|
{
|
|
|
|
"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"
|
2024-02-29 17:42:59 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "node-terminal",
|
|
|
|
"name": "Run Script: dev",
|
|
|
|
"request": "launch",
|
|
|
|
"command": "npm run dev",
|
|
|
|
// "env": {"NODE_OPTIONS": "--inspect"},
|
|
|
|
"cwd": "${workspaceFolder}/app/gui2"
|
2024-05-17 15:42:35 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "nativeimage",
|
|
|
|
"request": "launch",
|
|
|
|
"name": "Launch Native Image",
|
|
|
|
"nativeImagePath": "${workspaceFolder}/runner",
|
2024-06-21 07:03:53 +03:00
|
|
|
"args": "--run ${file}"
|
2023-09-23 10:15:24 +03:00
|
|
|
}
|
|
|
|
]
|
2024-02-29 17:42:59 +03:00
|
|
|
}
|