JSTQL-JS-Transform/didactic-chainsaw-dsl/.vscode/tasks.json

21 lines
648 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build js-transform-lang",
"command": "npm run langium:generate && npm run build",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Langium: Generate grammar and build the js-transform-lang language",
"icon": {
"color": "terminal.ansiGreen",
"id": "server-process"
}
}
]
}