Skip to content

Instantly share code, notes, and snippets.

@TizioFittizio
Last active April 11, 2020 11:14
Show Gist options
  • Save TizioFittizio/5154b601d968ba27475675325558d31f to your computer and use it in GitHub Desktop.
Save TizioFittizio/5154b601d968ba27475675325558d31f to your computer and use it in GitHub Desktop.
vsc ts debug conf
{
// 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",
"program": "${workspaceFolder}\\dist\\index.js",
"preLaunchTask": "tsc: build - tsconfig.json",
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
]
},
{
"type": "node",
"request": "launch",
"name": "Test",
"disableOptimisticBPs": true,
"program": "${workspaceFolder}\\node_modules\\jest\\bin\\jest",
"args": [
"--runInBand",
"blogController"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"skipFiles": [
"*.js"
],
"sourceMaps": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment