2016-07-15 12:49:27 +02:00
|
|
|
// A launch configuration that compiles the extension and then opens it inside a new window
|
|
|
|
|
{
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"configurations": [
|
|
|
|
|
{
|
|
|
|
|
"name": "Launch Extension",
|
|
|
|
|
"type": "extensionHost",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"runtimeExecutable": "${execPath}",
|
|
|
|
|
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
|
|
|
|
|
"stopOnEntry": false,
|
|
|
|
|
"sourceMaps": true,
|
2016-12-13 10:00:29 -08:00
|
|
|
"outFiles": ["${workspaceRoot}/out/src/**/*.js"],
|
2018-05-31 16:13:45 +02:00
|
|
|
"preLaunchTask": "npm: watch"
|
2016-07-15 12:49:27 +02:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Launch Tests",
|
|
|
|
|
"type": "extensionHost",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"runtimeExecutable": "${execPath}",
|
|
|
|
|
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
|
|
|
|
|
"stopOnEntry": false,
|
|
|
|
|
"sourceMaps": true,
|
2016-12-13 10:00:29 -08:00
|
|
|
"outFiles": ["${workspaceRoot}/out/test/**/*.js"],
|
2018-05-31 16:13:45 +02:00
|
|
|
"preLaunchTask": "npm: watch"
|
2016-07-15 12:49:27 +02:00
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|