File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) , and this project
6
6
adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 2.4.1] - 2024-04-09
9
+
10
+ ### Fixed
11
+
12
+ - Fix typescript server crashing when using the plugin with Typescript 5.4
13
+
14
+
8
15
## [ 2.4.0] - 2024-03-07
9
16
10
17
### Added
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " typescript-strict-plugin" ,
3
- "version" : " 2.4.0 " ,
3
+ "version" : " 2.4.1 " ,
4
4
"description" : " Typescript tools that help with migration to the strict mode" ,
5
5
"author" : " Allegro" ,
6
6
"contributors" : [
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ const init: ts.server.PluginModuleFactory = ({ typescript }) => {
13
13
14
14
const strictLanguageServiceHost = setupStrictLanguageServiceHostProxy ( info ) ;
15
15
const strictLanguageService = typescript . createLanguageService ( strictLanguageServiceHost ) ;
16
+ strictLanguageService . getProgram ( ) ;
16
17
17
18
log ( info , 'Plugin initialized' ) ;
18
19
You can’t perform that action at this time.
0 commit comments