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 4063529 commit 3db82ac
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .vscode/launch.json
Expand Up @@ -4,17 +4,17 @@
{
"type": "chrome",
"request": "launch",
"name": "Vue debugger",
"name": "Vue Debugger",
"url": "http://localhost:9527",
"webRoot": "${workspaceFolder}"
},
{
"type": "node",
"request": "launch",
"name": "TS debugger",
"skipFiles": ["<node_internals>/**"],
"runtimeArgs": ["--loader", "tsx"],
"program": "${relativeFile}"
"name": "TS Debugger",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/tsx",
"skipFiles": ["<node_internals>/**", "${workspaceFolder}/node_modules/**"],
"program": "${file}"
}
]
}

0 comments on commit 3db82ac

Please sign in to comment.