rust/editors/code/.vscode/launch.json

37 lines
1.2 KiB
JSON
Raw Normal View History

2018-08-27 21:52:43 +02: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 20:58:49 +02:00
{
2018-08-27 21:52:43 +02:00
"version": "0.2.0",
2018-07-30 20:58:49 +02:00
"configurations": [
{
2018-08-27 21:52:43 +02:00
"name": "Extension",
2018-07-30 20:58:49 +02:00
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
2018-08-27 21:52:43 +02:00
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm: watch"
2018-07-30 20:58:49 +02:00
},
2018-08-27 21:52:43 +02:00
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test"
],
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
],
"preLaunchTask": "npm: watch"
}
2018-07-30 20:58:49 +02:00
]
}