Skip to content

Commit

Permalink
Merge pull request #104 from caorushizi/feat/actions
Browse files Browse the repository at this point in the history
feat: ✨  add vscode debug config
  • Loading branch information
caorushizi authored Feb 27, 2024
2 parents 08728b9 + 34f07fb commit 39dc4da
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
node_modules
.vscode
*.local
.idea
.parcel-cache
Expand Down
23 changes: 23 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch dev",
"runtimeExecutable": "npm",
"runtimeArgs": ["run-script", "dev"],
"skipFiles": ["<node_internals>/**"]
},
{
"name": "Attach to Electron",
"type": "node",
"request": "attach",
"address": "localhost",
"restart": true,
"timeout": 10000,
"localRoot": "${workspaceFolder}",
"remoteRoot": "${workspaceFolder}"
}
]
}

0 comments on commit 39dc4da

Please sign in to comment.