15fc6f25fd
Problem: We need to deliver a VSCode extension but the one we use currently is located in a separate repo, requires manual patches and does not support ReasonLIGO. Solution: Add our extension that supports PascaLIGO and ReasonLIGO; CamLIGO is WIP.
34 lines
755 B
JSON
34 lines
755 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"
|
|
]
|
|
}
|
|
]
|
|
}
|