Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

VSCodeInt

Compl Yue edited this page Oct 26, 2019 · 1 revision

VSCode Integration

Setup your VSCode with HIE

Create under the project root .vscode/tasks.json with following contents:

{
  "version": "2.0.0",
  "presentation": {
    "reveal": "always",
    "panel": "new"
  },
  "tasks": [
    {
      "group": {
        "kind": "build",
        "isDefault": true
      },
      "label": "hadui-dev",
      "type": "shell",
      "command": "cd ${workspaceRoot}; stack build --exec hadui-dev"
    }
  ]
}

Press F7 (macOS) or Ctrl+Shift+B (Linux) to start hadui-dev for the project

hadui-vscode

Debugging with VSCode

coming sooner than later ...

Clone this wiki locally