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

31 lines
1.1 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-10-08 23:38:33 +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-10-08 23:38:33 +02:00
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
"outFiles": ["${workspaceFolder}/out/**/*.js"],
2018-08-27 21:52:43 +02:00
"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"
],
2018-10-08 23:38:33 +02:00
"outFiles": ["${workspaceFolder}/out/test/**/*.js"],
2018-08-27 21:52:43 +02:00
"preLaunchTask": "npm: watch"
}
2018-07-30 20:58:49 +02:00
]
}