Releases: zardoy/typescript-vscode-plugins
Releases · zardoy/typescript-vscode-plugins
v0.0.28
v0.0.27
v0.0.25
✨ New Features
- boost keyword suggestions in some locations, adds
extends
in type contexts b38a3fc disableUselessHighlighting
(disabled by default). I personally really love this feature! Simple but effective 4722e67- add more suggestions in default parameter for generics by
additionalTypesSuggestions
(not controlled by setting) e6c5c9c - Exclude covered
case
s in switch for strings & enums (enabled with setting by default
🐛 Bug Fixes
v0.0.24
v0.0.23
✨ New Features
- improve inferring name of arrays:
users.map(user => ).filter(user => )
also suggestitem
in more locations a3f755f - Meet new strict emmet!
jsxEmmet.type
was removed in favor of two new settings:jsxEmmet
andjsxPseudoEmmet
(which is disabled by default now) (#49) - Meet web support! New web-only feature: now it is possible to click on
import
paths! (#49) - fix array method snippets in some cases
- add experimental declare missing property codefix. It will be most probably removed from here :D
🐛 Bug Fixes
- fix: fix
findNodeAtPosition
that it was always looking for a node one char behind. To restore old behavior, useoffset: offset - 1
in first arg. Also this fix now makes it receive data in the first arg. - restore suggestions sorting in more locations ec33dc3
v0.0.22
v0.0.21
v0.0.20
✨ New Features
- disable by default method snippet methods in jsx attributes to not be annoying when passing callbacks for attributes starting with
on
a257ef7 - add experimental postfixes that disabled by default 14fe64d
- huge-feature!: add
jsxCompletionsMap
for incredible jsx attributes customization! 8c70e19 - add enable by default fix for jsx completions snippets 8c70e19
🐛 Bug Fixes
- don't expand method snippet in attributes name suggestions. Probably will be adopted instead in future c4c7a63
- outline: don't crash in files that contained indexed signature in type 6f54ab5
- don't expand builtin and our method snippets at jsx tag positions! 252feb1
- allow to expand builtin method snippets in property assignment 252feb1