mirror of
https://github.com/jlengrand/elm-language-client-vscode.git
synced 2026-03-10 08:11:17 +00:00
40 lines
572 B
JSON
40 lines
572 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "npm",
|
|
"script": "compile",
|
|
"group": "build",
|
|
"presentation": {
|
|
"panel": "dedicated",
|
|
"reveal": "never"
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc"
|
|
]
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "watch",
|
|
"isBackground": true,
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"presentation": {
|
|
"panel": "dedicated",
|
|
"reveal": "never"
|
|
},
|
|
"problemMatcher": [
|
|
"$tsc-watch"
|
|
]
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "lint",
|
|
"problemMatcher": [
|
|
"$tslint5"
|
|
]
|
|
}
|
|
]
|
|
} |