Created
October 17, 2019 13:41
-
-
Save crafter999/20cd6c218892d4e33e173bb6af79920c to your computer and use it in GitHub Desktop.
Revisions
-
crafter999 created this gist
Oct 17, 2019 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ { "version": "0.2.0", "configurations": [ { "type": "node", "request": "launch", "name": "Debug Node.js", "program": "${workspaceFolder}/main.ts", // <--- typescript debug file "outFiles": ["${workspaceFolder}/dist/**/*.js"], // <--- dist js files "sourceMaps": true, "port":9229, "runtimeArgs": ["--inspect-brk=9229"], } ] }