1
1
mirror of https://github.com/kahole/edamagit.git synced 2024-09-11 07:15:31 +03:00
edamagit/.vscode/launch.json

37 lines
990 B
JSON
Raw Normal View History

2019-12-04 20:23:06 +03:00
// A launch configuration that compiles the extension and then opens it 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": "Run Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
2020-05-06 20:37:34 +03:00
"${workspaceFolder}/dist/**/*.js"
2019-12-04 20:23:06 +03:00
],
2020-05-06 20:37:34 +03:00
"preLaunchTask": "npm: watch"
2019-12-04 20:23:06 +03:00
},
{
2020-05-06 20:37:34 +03:00
"name": "Run Tests",
2019-12-04 20:23:06 +03:00
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
],
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
],
2020-05-06 20:37:34 +03:00
"preLaunchTask": "npm: test-compile"
2019-12-04 20:23:06 +03:00
}
]
}