mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-12-04 13:24:09 +00:00
The `DebugConfigurationProvider` was overwriting configurations provided
in `launch.json`. In particular, this for example prevented from specifying a
custom port for the debugger.
Example `launch.json`
```
{
"configurations": [
{
"type": "wamr-debug",
"request": "attach",
"name": "Attach Debugger",
"stopOnEntry": true,
"attachCommands": [
"process connect -p wasm connect://127.0.0.1:1237"
]
}
]
}
```
Co-authored-by: Ben Riegel <benjuri@amazon.com>
|
||
|---|---|---|
| .. | ||
| utilities | ||
| view | ||
| constants.ts | ||
| debugConfigurationProvider.ts | ||
| decorationProvider.ts | ||
| extension.ts | ||
| taskProvider.ts | ||