Carlos,
Sorry that you are seeing this issue with debugging.
For debugging, please check this tutorial if you haven’t earlier : https://www.genuitec.com/docs/debugger/debugging-in-codemix
If you are still seeing issues, then please share with us some more details :
1. Does the app start fine when starting it from Terminal+ view?
2. Are you trying to debug TS files in the nodejs app? If yes, then you need to modify the launch.json entries as below i.e add a preLaunchTask entry and modify the program entry to point to .ts file :
"program": "${workspaceFolder}/src/main.ts",
"preLaunchTask": "tsc: build - tsconfig.json",
3. In case you dont have a system installation of Nodejs, then please add another entry to the launch.json pointing to the one from .codemix-store. The .codemix-store will be located in your user home folder.
Example :
"runtimeExecutable": "C:\\userxxx\\.codemix-store\\nodejs\\14.1.0\\node.exe"
4. Please share the .log file located at workspace dir/.metadata/.log (rename the extension to .txt and attach it here) along with the contents of the launch.json to help us investigate further. Also share with us more details about the project and the file types you are working with.
–Swapna
Genuitec Support