Skip to content

Commit

Permalink
Pick up latest TS for building VS Code (#208041)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjbvz committed Mar 18, 2024
1 parent b3701a9 commit 18d118a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsec": "0.2.7",
"typescript": "^5.5.0-dev.20240311",
"typescript": "^5.5.0-dev.20240318",
"typescript-formatter": "7.1.0",
"util": "^0.12.4",
"vscode-nls-dev": "^3.3.1",
Expand Down
3 changes: 3 additions & 0 deletions src/vs/workbench/contrib/chat/browser/chatWidget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,9 @@ export class ChatWidget extends Disposable implements IChatWidget {
}

moveFocus(item: ChatTreeItem, type: 'next' | 'previous'): void {
if (!isResponseVM(item)) {
return;
}
const items = this.viewModel?.getItems();
if (!items) {
return;
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9643,10 +9643,10 @@ typescript@^4.7.4:
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.4.tgz#c464abca159669597be5f96b8943500b238e60e6"
integrity sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==

typescript@^5.5.0-dev.20240311:
version "5.5.0-dev.20240311"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.5.0-dev.20240311.tgz#98eb4774ff5dc21d821e8b0c60e06ad0c0c7e693"
integrity sha512-Cdp0eYgn/19lkcrq7WCqQxmnvCqvuJrd/jGhm1HyPMSYVTGzjxVP0NfXr2A4YVS12IAipt1uO4zgAJeLlYG2JA==
typescript@^5.5.0-dev.20240318:
version "5.5.0-dev.20240318"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.5.0-dev.20240318.tgz#b2fc9454fed98e8952ba524dee0cde991a752afe"
integrity sha512-NLUk3mN8h9UWmeFns5dhiRIIZffmDePNOMPwwr36tYoJikteOGLNCOOcCP2Yvc+cOzl/mkBOUaEngUBGYRJBGw==

typical@^4.0.0:
version "4.0.0"
Expand Down

0 comments on commit 18d118a

Please sign in to comment.