{
  "version": "0.2.0",
  "configurations": [
    {
      "type": "node",
      "request": "launch",
      "args": ["--version"], // We're bypassing the debugger to get straight to our task - which is the only way to execute js by hitting F5
      "name": "Execute template",
      "postDebugTask": "Execute template", // We do it after so the "node --version" output is not even shown
      "skipFiles": ["<node_internals>/**"]
    }
  ]
}
