This extension is still on active development, this extension provide function to restart the debugger automatically when the code is save. Set the configuration on setting.json, so the extension able to detect when should restart the debugger. This extension able to support multiple configuration.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
This extension is still on active development, this extension provide function to restart the debugger automatically when the code is save. Set the configuration on setting.json, so the extension able to detect when should restart the debugger. This extension able to support multiple configuration.
Sample Configuration
// add this config on setting.json
{
"debugger.watcher": [
{
"name": "Jarvis", // must be same as configration name on launch.json
"folder": "${workspaceFolder}/jarvis", // folder to watch changes
"preLaunchCommand": "<< terminal command >>" // (Optional) will run the command before restart the debugger
},
{
"name": "Mars",
"folder": "${workspaceFolder}/mars"
},
]
}