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

https://github.com/nodesource/ns-vsx-deoptigate


https://github.com/nodesource/ns-vsx-deoptigate

Last synced: 7 days ago
JSON representation

Awesome Lists containing this project

README

          

# ns-vsx-deoptigate README

This is the README for your extension "ns-vsx-deoptigate".

![demo](assets/vsx-deoptigate.gif)

## Setup

Sample `launch.json` configuration using Node.js debugger (for now).
This adds a log file at `.vscode/deoptigate.log` where we expect it to be.

```json
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "deoptigate",
"program": "${workspaceFolder}/adders/adders.js",
"runtimeArgs": [
"--trace-ic",
"--logfile=${workspaceFolder}/.vscode/deoptigate.log",
"--nologfile-per-isolate"
]
}
]
}
```