https://github.com/nodesource/ns-vsx-deoptigate
https://github.com/nodesource/ns-vsx-deoptigate
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/nodesource/ns-vsx-deoptigate
- Owner: nodesource
- Created: 2018-10-23T22:07:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-02T22:13:55.000Z (over 7 years ago)
- Last Synced: 2025-10-30T10:35:03.840Z (9 months ago)
- Language: JavaScript
- Size: 939 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ns-vsx-deoptigate README
This is the README for your extension "ns-vsx-deoptigate".

## 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"
]
}
]
}
```