You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix typescript plugin in vscode
This is done by tweaking the logic slightly (typescript 5 returns a
slightly different AST tree) and also use the typescript util
functions that are passed into the plugin. This is important because
the vscode extension currently bundles a typescript version which
might be different from the one that the project is using. And given
that typescript relies on enums with numbers, we can run into issues
where the value 357 for SyntaxKind might mean one thing in one
version and something completely different in another typescript
version.
* Update changelog
* Bump version to 0.5.3
Copy file name to clipboardexpand all lines: CHANGELOG.md
+6
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,11 @@
1
1
# Changelog
2
2
3
+
## [v0.5.3] - 2023-06-26
4
+
5
+
### Changed
6
+
7
+
- Fixed issue with running the typescript plugin in combination with typescript 5 (and also fix issues when the vscode extension is bundled with a different version of typescript compared to what vscode is using)
0 commit comments