Extension

This page is based around this extension:

Recommendation

Set up a file which means a user of your repo will get prompted to optional install the extensions listed.

  • .vscode/extensions.json
      {
        "recommendations": [
          "denoland.vscode-deno"
        ]
      }
    

Settings

Use this in a project. The help for the extension’s settings advise against setting these globally.

  • .vscode/settings.json
      {
        "deno.enable": true,
        "deno.lint": true,
        "deno.unstable": true,
    
        "deno.config": "tsconfig.json",
        "deno.importMap": "import_map.json"
      }
    

You can omit the last two settings if they are not needed.