summaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorChristoph Schlosser <2466365+cschlosser@users.noreply.github.com>2021-04-17 22:12:38 +0200
committerGitHub <noreply@github.com>2021-04-17 22:12:38 +0200
commitdbcf5dc87d83ee59fc23e4eaa225a15655d17d2d (patch)
treed22cb94be324153581658e80a8596765755971a0 /.vscode/launch.json
parent703019a593c1e4118b580015b1af8bcfbb86b135 (diff)
downloaddoxdocgen-dbcf5dc87d83ee59fc23e4eaa225a15655d17d2d.tar.gz
Prepare release 1.2.0 (#213)1.2.0
* Prepare release 1.2.0 * Update versions * Lint * update appveyor * Update travis * Use yarn * Add nyc * Run cov instead of test * remove package-lock.json * Remove istanbul
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 3333439..054ed81 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -11,18 +11,18 @@
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/**/*.js" ],
- "preLaunchTask": "npm: watch"
+ "preLaunchTask": "npm: compile"
},
{
"name": "Launch Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
- "args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
+ "args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test", "--disable-extensions" ],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/test/**/*.js" ],
- "preLaunchTask": "npm: watch"
+ "preLaunchTask": "npm: compile"
}
]
}