Skip to content

Instantly share code, notes, and snippets.

@redeemefy
Created March 25, 2021 22:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save redeemefy/62b3d4790b435dff6739c15d656607e1 to your computer and use it in GitHub Desktop.
Save redeemefy/62b3d4790b435dff6739c15d656607e1 to your computer and use it in GitHub Desktop.
VSCode debugging file configuration
{
// 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