New to Elixir, new to vs code but not coding. I am trying to get the debugger in vs code working with Elixir. I have installed the extension ElixirLS version v0.17.1 and I am able to write code and execute from the integrated terminal provided by vs code. When I try to run and debug in the vs code window it complains about the “type: elixir”, command in the launch.json file stating that it is not a supported type? According to chatGPT what I have should “fly” but it doesn’t. Please see below the complete launch.json
{
“version”: “0.2.0”,
“configurations”: [
{
“name”: “Elixir Debug”,
“type”: “elixir”,
“request”: “launch”,
“program”: “${c:/Users/Gordon/servy}/lib/servy.ex”,
“cwd”: “${c:/Users/Gordon/servy}”,
“args”: ,
“runtimeArgs”: [
“–sname”,
“debug@localhost”
],
“console”: “integratedTerminal”,
“stopOnEntry”: false,
“internalConsoleOptions”: “neverOpen”
}
]
}
Any insight provided will be greatly appreciated.
Respectfully,
Ideprize