An open API service indexing awesome lists of open source software.

https://github.com/zardoy/vscode-js-debug-extras

In-code debugger
https://github.com/zardoy/vscode-js-debug-extras

Last synced: 3 months ago
JSON representation

In-code debugger

Awesome Lists containing this project

README

          

# VS Code JS Debugger Extras

### Evaluate TypeScript Code in Debug Console

Uses ide scripting's esbuild to quickly transpile TS code and evaluate it in the debug console. Useful as you use

### `customPropertiesGenerator`

Experimental extension which allows you take full control (with some restrictions) over the preview of objects in hovers & variables view with the power of `customPropertiesGenerator` from the [js debug extension](https://github.com/Microsoft/vscode-pwa.git). This feature may be unstable. Also note that using this feature will ignore `customPropertiesGenerator` from launch.json configurations.

Recommended config:

```json
"jsDebugExtras.hidePrototype": true,
"jsDebugExtras.specialButtons": {
"groupButtons": "all"
}
```