Skip to content

Commit

Permalink
Added debbuging settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
erik-sth committed Oct 21, 2023
1 parent 60473c0 commit 3412852
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug TypeScript",
"program": "${workspaceFolder}/path/to/your/app.ts",
"preLaunchTask": "tsc: build - tsconfig.json",
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
"sourceMaps": true,
"protocol": "inspector"
}
]
}

0 comments on commit 3412852

Please sign in to comment.