summaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorChristoph Schlosser <christoph@linux.com>2017-10-07 15:01:49 +0200
committerChristoph Schlosser <christoph@linux.com>2017-10-07 15:13:01 +0200
commit77e321815fb8b0b1833813a812fcb48f9a5e5617 (patch)
treead55aa879ba0404c0fa7a5f8d446845e808679e7 /.vscode/launch.json
parent74c2c73dcbd5938368f9657519c8cf269a25e43d (diff)
downloaddoxdocgen-77e321815fb8b0b1833813a812fcb48f9a5e5617.tar.gz
Add .vscode folder
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..3333439
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,28 @@
+// A launch configuration that compiles the extension and then opens it inside a new window
+{
+ "version": "0.1.0",
+ "configurations": [
+ {
+ "name": "Launch Extension",
+ "type": "extensionHost",
+ "request": "launch",
+ "runtimeExecutable": "${execPath}",
+ "args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
+ "stopOnEntry": false,
+ "sourceMaps": true,
+ "outFiles": [ "${workspaceRoot}/out/**/*.js" ],
+ "preLaunchTask": "npm: watch"
+ },
+ {
+ "name": "Launch Tests",
+ "type": "extensionHost",
+ "request": "launch",
+ "runtimeExecutable": "${execPath}",
+ "args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
+ "stopOnEntry": false,
+ "sourceMaps": true,
+ "outFiles": [ "${workspaceRoot}/out/test/**/*.js" ],
+ "preLaunchTask": "npm: watch"
+ }
+ ]
+}