diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2022-07-12 09:35:18 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-12 09:35:18 +1000 |
commit | 5db16d122914336124620a5152655917e58f05a6 (patch) | |
tree | 41c5124e3fbe7ba13a54ab710c2bdbabbbea1d95 /cli/tsc/99_main_compiler.js | |
parent | 82431062fa6dd82679e1903dda4e33103a0299da (diff) |
fix(lsp): enable auto imports (#15145)
Fixes: #15111
Diffstat (limited to 'cli/tsc/99_main_compiler.js')
-rw-r--r-- | cli/tsc/99_main_compiler.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cli/tsc/99_main_compiler.js b/cli/tsc/99_main_compiler.js index c2b50ba16..85ab38ccc 100644 --- a/cli/tsc/99_main_compiler.js +++ b/cli/tsc/99_main_compiler.js @@ -718,10 +718,9 @@ delete Object.prototype.__proto__; request.args.specifier, request.args.position, request.args.name, - undefined, + {}, request.args.source, - undefined, - // @ts-expect-error this exists in 4.3 but not part of the d.ts + request.args.preferences, request.args.data, ), ); |