{
  // See https://go.microsoft.com/fwlink/?LinkId=733558 
  // for the documentation about the tasks.json format
  "version": "2.0.0",
  "tasks": [
    {
      "label": "nim-build-file",
      "type": "shell",
      "command": "nimble c --d:debug --linedir:on --debuginfo --debugger:native --verbose ${file}",
      "problemMatcher": [],
      "group": {
        "kind": "build",
        "isDefault": true
      }
    },
    {
      "label": "nim-clean-file",
      "type": "shell",
      "command": "rm ${fileBasename}",
      "problemMatcher": []
    }
  ]
}