Skip to content

Commit

Permalink
chore: add breakpoint debugging config for VS Code (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
tolking authored Dec 18, 2024
1 parent 7444576 commit 40f5c3e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Chrome",
"request": "launch",
"type": "chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}"
},
{
"name": "Launch Edge",
"request": "launch",
"type": "msedge",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}"
},
{
"name": "Run and debug",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["run", "dev"]
}
]
}

0 comments on commit 40f5c3e

Please sign in to comment.