From 41a5c2b660deb5737ce7d8abe7dabbc1cdf2d66e Mon Sep 17 00:00:00 2001 From: adrijshikhar Date: Thu, 16 Apr 2020 23:50:34 +0530 Subject: [PATCH] Adds extension debugging config --- .gitignore | 2 +- .vscode/launch.json | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index db10377..6c6b7be 100644 --- a/.gitignore +++ b/.gitignore @@ -103,5 +103,5 @@ dist # TernJS port file .tern-port -.vscode +.vscode/settings.json *.vsix diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..a02e3d3 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,18 @@ +// A launch configuration that launches the extension inside a new window +// 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": [ + { + "name": "DarkDev", + "type": "extensionHost", + "request": "launch", + "runtimeExecutable": "${execPath}", + "args": [ + "--extensionDevelopmentPath=${workspaceFolder}" + ] + } + ] +} \ No newline at end of file