{ // 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": "chrome", "request": "launch", "name": "Silphius Chrome", "url": "https://localhost:3000", "webRoot": "${workspaceFolder}", "runtimeArgs": ["--auto-open-devtools-for-tabs"] }, { "type": "node", "request": "launch", "name": "Silphius Dev", "skipFiles": [ "/**" ], "resolveSourceMapLocations": [], "cwd": "${workspaceFolder}", "runtimeExecutable": "npm", "runtimeArgs": ["run", "dev"], }, { "type": "chrome", "request": "launch", "name": "Storybook Chrome", "url": "http://localhost:6006", "webRoot": "${workspaceFolder}", }, { "type": "node", "request": "launch", "name": "Storybook Dev", "skipFiles": [ "/**" ], "resolveSourceMapLocations": [], "cwd": "${workspaceFolder}", "runtimeExecutable": "npm", "runtimeArgs": ["run", "storybook", "--", "--no-open"], }, ], "compounds": [ { "name": "Silphius", "configurations": [ "Silphius Dev", "Silphius Chrome", ], "stopAll": true, }, { "name": "Storybook", "configurations": [ "Storybook Dev", "Storybook Chrome", ], "stopAll": true, } ] }