add lauch.json to server-ready extension

pull/71666/head
Andre Weinand 2019-04-03 15:20:33 +02:00
parent e917594477
commit d6f413356f
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Run Server Ready Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
]
}
]
}