Skip to content

Commit

Permalink
added launch.json for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
FitzM committed Aug 13, 2023
1 parent 305af1a commit bafdd87
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
// 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": [
"<node_internals>/**"
],
"program": "${worspaceFolder}/src/index.ts"
}

]
}
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
console.log("Hello ")
console.log("Hello ")

console.log("World")

0 comments on commit bafdd87

Please sign in to comment.