Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cksachdev/vscode-debugging
Debugging in VSCode
https://github.com/cksachdev/vscode-debugging
issues vscode vscode-debugger xlsx
Last synced: about 21 hours ago
JSON representation
Debugging in VSCode
- Host: GitHub
- URL: https://github.com/cksachdev/vscode-debugging
- Owner: cksachdev
- Created: 2019-06-13T09:24:21.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-22T20:22:54.000Z (over 3 years ago)
- Last Synced: 2023-03-10T23:53:25.127Z (over 1 year ago)
- Topics: issues, vscode, vscode-debugger, xlsx
- Language: JavaScript
- Size: 1.52 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vscode-debugging
repo to show issue with debugging in vscodeTo demo the issue with debugging, below is the code which I am trying to run in vscode:
```
const XLSX = require('xlsx');
console.log("imported xlsx" + XLSX);
```When I try to debug this in vscode, I get the following error:
ReferenceError: Blob is not defined
Refer to screenshot below:
![Preview](https://github.com/cksachdev/docs/blob/master/vscode-debugging.png
)To ignore the files from node_modules, I have tried adding
```
"skipFiles": [
"${workspaceFolder}/node_modules/**/*.js",
"${workspaceFolder}/lib/**/*.js",
"/**/*.js"
],
```
in launch.json. After adding skipFiles, none of the breakpoints get triggered e.g. if I put a breakpoint on console log statement, debugger never stops.