ApolloX - Incorrect type in launch.json

I think this is only a warning, and it doesn’t generate real issues (but I can’t be sure).
In .vscode/settings.json the item torizon_debug_port is defined as a string

  "torizon_debug_port": "9229",

But .vscode/launch.json expects it as a number:
immagine

Is it possible to have it fixed?
Thanks

Greetings @vix,

Thank you for bringing this to our attention I’ll go ahead and forward this report to our IDE team.

Best Regards,
Jeremias

Hey @vix

this is an issue from the node extension side, that provides the node debugger. The schema does not expect string, but it’s not possible to expand variables, from settings.json, without adding it inside a string. The good news is that it is only a warning and the VS Code ignores the schema from node extension and executes to expand correctly, and it works at the end of the day.

Best Regards,

1 Like