From 78b67c366bddec48393a7e0230960d85081fd18c Mon Sep 17 00:00:00 2001 From: atanasster Date: Thu, 28 Nov 2019 01:03:48 -0500 Subject: [PATCH] added launch.json --- .gitignore | 3 ++- .vscode/launch.json | 22 ++++++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 48f61b11955e..ffe460ac8a41 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,8 @@ node_modules *.log .idea *.iml -.vscode +.vscode/* +!.vscode/launch.json *.sw* npm-shrinkwrap.json dist diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000000..50ef06713aca --- /dev/null +++ b/.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": [ + "/**" + ] + }, + ] +} \ No newline at end of file