Add lsp code action ui sample

This commit is contained in:
Dirk Baeumer
2019-11-15 19:19:44 +01:00
parent 92354b3a8a
commit 3fa2d68290
23 changed files with 5487 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "watch",
"isBackground": true,
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "never",
"panel": "dedicated"
},
"problemMatcher": [
"$tsc-watch"
]
},
{
"type": "npm",
"script": "compile",
"isBackground": false,
"group": "build",
"presentation": {
"reveal": "never",
"panel": "dedicated"
},
"problemMatcher": [
"$tsc"
]
}
]
}