提交 327c2728 编写于 作者: M Matt Bierner

Build VS Code using TS 3.4

上级 cd4713c2
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
"minimist": "^1.2.0", "minimist": "^1.2.0",
"request": "^2.85.0", "request": "^2.85.0",
"tslint": "^5.9.1", "tslint": "^5.9.1",
"typescript": "3.3.1", "typescript": "3.4.1",
"vsce": "1.48.0", "vsce": "1.48.0",
"xml2js": "^0.4.17" "xml2js": "^0.4.17"
}, },
......
...@@ -1894,10 +1894,10 @@ typed-rest-client@^0.9.0: ...@@ -1894,10 +1894,10 @@ typed-rest-client@^0.9.0:
tunnel "0.0.4" tunnel "0.0.4"
underscore "1.8.3" underscore "1.8.3"
typescript@3.3.1: typescript@3.4.1:
version "3.3.1" version "3.4.1"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.3.1.tgz#6de14e1db4b8a006ac535e482c8ba018c55f750b" resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.4.1.tgz#b6691be11a881ffa9a05765a205cb7383f3b63c6"
integrity sha512-cTmIDFW7O0IHbn1DPYjkiebHxwtCMU+eTy30ZtJNBPF9j2O1ITu5XH2YnBeVRKWHqF+3JQwWJv0Q0aUgX8W7IA== integrity sha512-3NSMb2VzDQm8oBTLH6Nj55VVtUEpe/rgkIzMir0qVoLyjDZlnMBva0U6vDiV3IH+sl/Yu6oP5QwsAQtHPmDd2Q==
uc.micro@^1.0.1, uc.micro@^1.0.5: uc.micro@^1.0.1, uc.micro@^1.0.5:
version "1.0.5" version "1.0.5"
......
...@@ -138,7 +138,7 @@ export class LinkDetector { ...@@ -138,7 +138,7 @@ export class LinkDetector {
private onLinkClick(event: IMouseEvent, resource: uri, line: number, column: number = 0): void { private onLinkClick(event: IMouseEvent, resource: uri, line: number, column: number = 0): void {
const selection = window.getSelection(); const selection = window.getSelection();
if (selection.type === 'Range') { if (!selection || selection.type === 'Range') {
return; // do not navigate when user is selecting return; // do not navigate when user is selecting
} }
......
...@@ -292,7 +292,7 @@ export class TextFileService extends Disposable implements ITextFileService { ...@@ -292,7 +292,7 @@ export class TextFileService extends Disposable implements ITextFileService {
} }
private backupBeforeShutdown(dirtyToBackup: URI[], textFileEditorModelManager: ITextFileEditorModelManager, reason: ShutdownReason): Promise<IBackupResult> { private backupBeforeShutdown(dirtyToBackup: URI[], textFileEditorModelManager: ITextFileEditorModelManager, reason: ShutdownReason): Promise<IBackupResult> {
return this.windowsService.getWindowCount().then(windowCount => { return this.windowsService.getWindowCount().then<IBackupResult>(windowCount => {
// When quit is requested skip the confirm callback and attempt to backup all workspaces. // When quit is requested skip the confirm callback and attempt to backup all workspaces.
// When quit is not requested the confirm callback should be shown when the window being // When quit is not requested the confirm callback should be shown when the window being
......
...@@ -8874,10 +8874,10 @@ typescript-tslint-plugin@^0.0.7: ...@@ -8874,10 +8874,10 @@ typescript-tslint-plugin@^0.0.7:
minimatch "^3.0.4" minimatch "^3.0.4"
vscode-languageserver "^5.1.0" vscode-languageserver "^5.1.0"
typescript@3.3.1: typescript@3.4.1:
version "3.3.1" version "3.4.1"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.3.1.tgz#6de14e1db4b8a006ac535e482c8ba018c55f750b" resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.4.1.tgz#b6691be11a881ffa9a05765a205cb7383f3b63c6"
integrity sha512-cTmIDFW7O0IHbn1DPYjkiebHxwtCMU+eTy30ZtJNBPF9j2O1ITu5XH2YnBeVRKWHqF+3JQwWJv0Q0aUgX8W7IA== integrity sha512-3NSMb2VzDQm8oBTLH6Nj55VVtUEpe/rgkIzMir0qVoLyjDZlnMBva0U6vDiV3IH+sl/Yu6oP5QwsAQtHPmDd2Q==
typescript@^2.6.2: typescript@^2.6.2:
version "2.6.2" version "2.6.2"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册