Skip to content
This repository has been archived by the owner on May 27, 2020. It is now read-only.

v3.3.0

Compare
Choose a tag to compare
@axetroy axetroy released this 16 Mar 09:11
· 135 commits to master since this release

Bug Fixes

  • cannot resolve module if location headers is relative or absolute path. close #97 (75d6027)

Features

  • add copy to clipboard message (4dd4b8d)
  • remove deno.dts_file configuration (#94) (f06e852)

BREAKING CHANGES

  • no more use deno.dts_file anymore
    We think this configuration item is redundant

    You can configure external declaration files in tsconfig.json

    before:

    //.vscode/settings.json
    {
      "deno.enable": true,
      "deno.dts_file": ["./path/to/demo.d.ts"]
    }

    after:

    //.vscode/settings.json
    {
      "deno.enable": true
    }