-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #6
- Loading branch information
Showing
5 changed files
with
737 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
/* | ||
* Each config in this array corresponds to an option | ||
* in the debug drop-down | ||
*/ | ||
{ | ||
"name": "tsx", | ||
"type": "node", | ||
"request": "launch", | ||
|
||
// Debug current file in VSCode | ||
"program": "${file}", | ||
|
||
/* | ||
* Path to tsx binary | ||
* Assuming locally installed | ||
*/ | ||
"runtimeExecutable": "tsx", | ||
|
||
/* | ||
* Open terminal when debugging starts (Optional) | ||
* Useful to see console.logs | ||
*/ | ||
"console": "integratedTerminal", | ||
"internalConsoleOptions": "neverOpen", | ||
|
||
// Files to exclude from debugger (e.g. call stack) | ||
"skipFiles": [ | ||
// Node.js internal core modules | ||
"<node_internals>/**", | ||
|
||
// Ignore all dependencies (optional) | ||
"${workspaceFolder}/node_modules/**", | ||
], | ||
}, | ||
{ | ||
"name": "index.ts", | ||
"type": "node", | ||
"request": "launch", | ||
|
||
// Debug current file in VSCode | ||
"program": "src/index.ts", | ||
|
||
/* | ||
* Path to tsx binary | ||
* Assuming locally installed | ||
*/ | ||
"runtimeExecutable": "tsx", | ||
|
||
/* | ||
* Open terminal when debugging starts (Optional) | ||
* Useful to see console.logs | ||
*/ | ||
"console": "integratedTerminal", | ||
"internalConsoleOptions": "neverOpen", | ||
} | ||
], | ||
} |
Oops, something went wrong.