Files

29 lines
839 B
JSON
Raw Permalink Normal View History

2018-03-27 11:03:01 +02:00
// A launch configuration that compiles the extension and then opens it inside a new window
{
2019-04-18 10:05:52 +02:00
"version": "0.2.0",
2018-03-27 11:03:01 +02:00
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/out/src/**/*.js"],
2019-04-18 10:05:52 +02:00
"preLaunchTask": "npm: watch"
2018-03-27 11:03:01 +02:00
},
{
"name": "Launch Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/out/test/**/*.js"],
2019-04-18 10:05:52 +02:00
"preLaunchTask": "npm: watch"
2018-03-27 11:03:01 +02:00
}
]
}