deno 1.24.3

Provides the deno executable
[
  {
    "title": "Insert import assertion.",
    "kind": "quickfix",
    "diagnostics": [
      {
        "range": {
          "start": {
            "line": 0,
            "character": 14
          },
          "end": {
            "line": 0,
            "character": 27
          }
        },
        "severity": 1,
        "code": "no-assert-type",
        "source": "deno",
        "message": "The module is a JSON module and not being imported with an import assertion. Consider adding `assert { type: \"json\" }` to the import statement."
      }
    ],
    "edit": {
      "changes": {
        "file:///a/a.ts": [
          {
            "range": {
              "start": {
                "line": 0,
                "character": 27
              },
              "end": {
                "line": 0,
                "character": 27
              }
            },
            "newText": " assert { type: \"json\" }"
          }
        ]
      }
    }
  }
]