// See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format { "version": "2.0.0", "tasks": [ { "label": "compile", "type": "npm", "script": "compile", "group": { "kind": "build", "isDefault": true }, "options": { "cwd": "${workspaceFolder}/dutchies-dcs-scripting-tools" } }, { "label": "watch", "type": "npm", "script": "watch", "dependsOn": "compile", "isBackground": true, "presentation": { "reveal": "never" }, "group": "build", "problemMatcher": "$tsc-watch", "options": { "cwd": "${workspaceFolder}/dutchies-dcs-scripting-tools" } } ] }