{
  // See https://go.microsoft.com/fwlink/?LinkId=733558
  // for the documentation about the tasks.json format
  "version": "2.0.0",
  "tasks": [
    {
      "label": "decaffeinate-bulk file",
      "type": "shell",
      "command": "npm run decaffeinate-bulk -- --file ${file} convert",
      "problemMatcher": []
    },
    {
      "label": "decaffeinate-bulk dir",
      "type": "shell",
      "command": "npm run decaffeinate-bulk -- --dir ${fileDirname} convert",
      "problemMatcher": []
    },
    {
      "label": "decaffeinate",
      "type": "shell",
      "command": "npm run decaffeinate -- ${file}"
    },
    {
      "label": "jscodeshift",
      "type": "shell",
      "command": "npm run jscodeshift -- ${file}"
    }
  ]
}
