Skip to content

Commit

Permalink
Dev: Add vscode launch.json for debugging (#8993)
Browse files Browse the repository at this point in the history
Dev: Add vscode launch.json for debugging
  • Loading branch information
shilman committed Nov 28, 2019
2 parents 8e92978 + 78b67c3 commit 8561e7b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -2,7 +2,8 @@ node_modules
*.log
.idea
*.iml
.vscode
.vscode/*
!.vscode/launch.json
*.sw*
npm-shrinkwrap.json
dist
Expand Down
22 changes: 22 additions & 0 deletions .vscode/launch.json
@@ -0,0 +1,22 @@
{
// 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": "official-storybook",
"runtimeExecutable": "npm",
"cwd": "${workspaceFolder}/examples/official-storybook",
"runtimeArgs": [
"run-script",
"debug"
],
"port": 9229,
"skipFiles": [
"<node_internals>/**"
]
},
]
}

1 comment on commit 8561e7b

@vercel
Copy link

@vercel vercel bot commented on 8561e7b Nov 28, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.