Skip to content

Commit

Permalink
chore(projects): update launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
honghuangdc committed Mar 3, 2024
1 parent e2eeb28 commit 97aa6dc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"version": "0.2.0",
"configurations": [
{
"name": "TS Debugger",
"type": "node",
"request": "launch",
"name": "TS debugger",
"skipFiles": ["<node_internals>/**"],
"runtimeArgs": ["--loader", "tsx"],
"program": "${relativeFile}"
"program": "${file}",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/tsx",
"skipFiles": ["<node_internals>/**", "${workspaceFolder}/node_modules/**"]
}
]
}

0 comments on commit 97aa6dc

Please sign in to comment.