Created
March 25, 2021 22:37
-
-
Save redeemefy/62b3d4790b435dff6739c15d656607e1 to your computer and use it in GitHub Desktop.
VSCode debugging file configuration
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
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Launch Program", | |
"skipFiles": [ | |
"${workspaceFolder}/node_modules/**/*.js", | |
"<node_internals>/**" | |
], | |
"program": "${workspaceFolder}/src/main.ts", | |
"preLaunchTask": "tsc: build - tsconfig.build.json", | |
"outFiles": [ | |
"${workspaceFolder}/dist/**/*.js" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment