2018-08-27 14:52:43 -05: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
|
2018-07-30 13:58:49 -05:00
|
|
|
{
|
2018-10-08 16:38:33 -05:00
|
|
|
"version": "0.2.0",
|
2018-07-30 13:58:49 -05:00
|
|
|
"configurations": [
|
|
|
|
{
|
2018-08-27 14:52:43 -05:00
|
|
|
"name": "Extension",
|
2018-07-30 13:58:49 -05:00
|
|
|
"type": "extensionHost",
|
|
|
|
"request": "launch",
|
|
|
|
"runtimeExecutable": "${execPath}",
|
2018-10-08 16:38:33 -05:00
|
|
|
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
|
|
|
|
"outFiles": ["${workspaceFolder}/out/**/*.js"],
|
2018-08-27 14:52:43 -05:00
|
|
|
"preLaunchTask": "npm: watch"
|
2018-07-30 13:58:49 -05:00
|
|
|
},
|
2018-08-27 14:52:43 -05:00
|
|
|
{
|
|
|
|
"name": "Extension Tests",
|
|
|
|
"type": "extensionHost",
|
|
|
|
"request": "launch",
|
|
|
|
"runtimeExecutable": "${execPath}",
|
|
|
|
"args": [
|
2019-06-26 05:14:18 -05:00
|
|
|
"${workspaceFolder}/src/test/",
|
2018-08-27 14:52:43 -05:00
|
|
|
"--extensionDevelopmentPath=${workspaceFolder}",
|
|
|
|
"--extensionTestsPath=${workspaceFolder}/out/test"
|
|
|
|
],
|
2018-10-08 16:38:33 -05:00
|
|
|
"outFiles": ["${workspaceFolder}/out/test/**/*.js"],
|
2018-08-27 14:52:43 -05:00
|
|
|
"preLaunchTask": "npm: watch"
|
|
|
|
}
|
2018-07-30 13:58:49 -05:00
|
|
|
]
|
|
|
|
}
|