File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -53200,7 +53200,7 @@ var ts;
5320053200 return this.shimHost.getCurrentDirectory();
5320153201 };
5320253202 LanguageServiceShimHostAdapter.prototype.getDirectories = function (path) {
53203- return this.shimHost.getDirectories(path);
53203+ return JSON.parse( this.shimHost.getDirectories(path) );
5320453204 };
5320553205 LanguageServiceShimHostAdapter.prototype.getDefaultLibFileName = function (options) {
5320653206 return this.shimHost.getDefaultLibFileName(JSON.stringify(options));
Original file line number Diff line number Diff line change @@ -8728,7 +8728,7 @@ declare namespace ts {
87288728 getLocalizedDiagnosticMessages ( ) : string ;
87298729 getCancellationToken ( ) : HostCancellationToken ;
87308730 getCurrentDirectory ( ) : string ;
8731- getDirectories ( path : string ) : string [ ] ;
8731+ getDirectories ( path : string ) : string ;
87328732 getDefaultLibFileName ( options : string ) : string ;
87338733 getNewLine ?( ) : string ;
87348734 getProjectVersion ?( ) : string ;
Original file line number Diff line number Diff line change @@ -52966,7 +52966,7 @@ var ts;
5296652966 return this.shimHost.getCurrentDirectory();
5296752967 };
5296852968 LanguageServiceShimHostAdapter.prototype.getDirectories = function (path) {
52969- return this.shimHost.getDirectories(path);
52969+ return JSON.parse( this.shimHost.getDirectories(path) );
5297052970 };
5297152971 LanguageServiceShimHostAdapter.prototype.getDefaultLibFileName = function (options) {
5297252972 return this.shimHost.getDefaultLibFileName(JSON.stringify(options));
Original file line number Diff line number Diff line change @@ -59705,7 +59705,7 @@ var ts;
5970559705 return this.shimHost.getCurrentDirectory();
5970659706 };
5970759707 LanguageServiceShimHostAdapter.prototype.getDirectories = function (path) {
59708- return this.shimHost.getDirectories(path);
59708+ return JSON.parse( this.shimHost.getDirectories(path) );
5970959709 };
5971059710 LanguageServiceShimHostAdapter.prototype.getDefaultLibFileName = function (options) {
5971159711 return this.shimHost.getDefaultLibFileName(JSON.stringify(options));
Original file line number Diff line number Diff line change @@ -59705,7 +59705,7 @@ var ts;
5970559705 return this.shimHost.getCurrentDirectory();
5970659706 };
5970759707 LanguageServiceShimHostAdapter.prototype.getDirectories = function (path) {
59708- return this.shimHost.getDirectories(path);
59708+ return JSON.parse( this.shimHost.getDirectories(path) );
5970959709 };
5971059710 LanguageServiceShimHostAdapter.prototype.getDefaultLibFileName = function (options) {
5971159711 return this.shimHost.getDefaultLibFileName(JSON.stringify(options));
You can’t perform that action at this time.
0 commit comments