Skip to content

Releases: TypeStrong/atom-typescript

v14.2.1

20 Mar 11:09
Compare
Choose a tag to compare
Prepare v14.2.1 release

v14.0.2

01 Oct 18:48
Compare
Choose a tag to compare
  • Downgrade atom-package-deps to a working version (v6.x)

v14.0.1

01 Oct 17:57
Compare
Choose a tag to compare
  • Fix atom-package-deps (issue #1563)

v14.0.0

01 Oct 16:29
Compare
Choose a tag to compare

This release primarily focuses on improving latency.

Changes

  • Updated bundled TypeScript to v4.0.3

  • Most of the package is bundled as a single JavaScript source, which reduces start-up times. The flipside is that hacking on Atom-TS is a bit more involved; see CONTRIBUTING.md for details.

  • We're disabling eager prefetch of suggestion details (type and documentation) for latency reasons. Instead, those will be fetched lazily once the suggestion is selected.

  • Built-in occurrence highlight provider is temporarily suppressed while the text is being edited.

    The rationale behind this is to avoid spamming tsserver with useless requests. As a consequence, you might experience a slight delay when using the feature immediately after changing the text.

    You can tweak the experience by adjusting occurrenceHighlightDebounceTimeout option (see below).

New configuration options

  • Make occurrence highlight delay configurable when using built-in provider

    The delay is configurable via "atom-typescript.occurrenceHighlightDebounceTimeout" option ("Occurrence Highlight Debounce Timeout" in settings GUI). The default value of 300ms is consistent with the default Atom behaviour.

  • Make getErr delay configurable instead of relying on Atom default

    The delay is configurable via "atom-typescript.getErrDebounceTimeout" ("getErr Debounce Timeout" in settings GUI). The default value of 150ms is about half as low as before, which should hopefully help with the percieved latency.

Fixes

  • Reduce the number of spurious documentHighlights requests when using builtin provider
  • Remove geterr delay in on-change check
  • Fix multistep support detection code

Maintenance

  • Update dependencies
  • Bump travis host os version

v10.1.8

11 Oct 01:52
Compare
Choose a tag to compare
Prepare 10.1.8 release

HyperClick

11 Jul 08:18
Compare
Choose a tag to compare
  • Support hyperclick. Details : #995 🌹

v9.0.0

04 Jul 00:23
Compare
Choose a tag to compare
  • atom-ts will no longer rewrite tsconfig.json to expand out filesGlob to files anymore : #992

v8.10.1

14 May 22:35
Compare
Choose a tag to compare
  • Find references : Escape html : #939 🌹

v8.10.0

14 May 22:16
Compare
Choose a tag to compare

v8.9.2

13 May 21:40
Compare
Choose a tag to compare
  • tsconfig : recognize strictNullChecks : #940
  • Chore: fix build #949