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
- Host: GitHub
- URL: https://github.com/zardoy/vscode-js-debug-extras
- Owner: zardoy
- License: mit
- Created: 2023-02-15T15:51:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-05T23:26:37.000Z (almost 2 years ago)
- Last Synced: 2026-01-29T10:13:00.271Z (5 months ago)
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=zardoy.js-debug-extras
- Size: 97.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
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"
}
```