{ // 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}/code/examples/official-storybook", "runtimeArgs": [ "run-script", "debug" ], "port": 9229, "skipFiles": [ "/**" ] }, { "type": "node", "request": "launch", "name": "cli html", "cwd": "${workspaceFolder}/code/lib/cli/stories", "runtimeArgs": [ "--inspect-brk", "${workspaceFolder}/code/lib/cli/bin/index.js", "init", "--type", "html" ], "port": 9229, "skipFiles": [ "/**" ] } ] }