diff options
Diffstat (limited to 'cli/tsc/99_main_compiler.js')
-rw-r--r-- | cli/tsc/99_main_compiler.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cli/tsc/99_main_compiler.js b/cli/tsc/99_main_compiler.js index ab43af38d..b39f56cf6 100644 --- a/cli/tsc/99_main_compiler.js +++ b/cli/tsc/99_main_compiler.js @@ -898,6 +898,15 @@ delete Object.prototype.__proto__; ), ); } + case "provideInlayHints": + return respond( + id, + languageService.provideInlayHints( + request.specifier, + request.span, + request.preferences, + ), + ); default: throw new TypeError( // @ts-ignore exhausted case statement sets type to never |