Skip to content

Commit caafa5b

Browse files
authored
Merge pull request microsoft#71561 from Microsoft/ts-3.4-build
Build VS Code using TS 3.4
2 parents e069209 + 327c272 commit caafa5b

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

build/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"minimist": "^1.2.0",
4040
"request": "^2.85.0",
4141
"tslint": "^5.9.1",
42-
"typescript": "3.3.1",
42+
"typescript": "3.4.1",
4343
"vsce": "1.48.0",
4444
"xml2js": "^0.4.17"
4545
},

build/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1894,10 +1894,10 @@ typed-rest-client@^0.9.0:
18941894
tunnel "0.0.4"
18951895
underscore "1.8.3"
18961896

1897-
typescript@3.3.1:
1898-
version "3.3.1"
1899-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.3.1.tgz#6de14e1db4b8a006ac535e482c8ba018c55f750b"
1900-
integrity sha512-cTmIDFW7O0IHbn1DPYjkiebHxwtCMU+eTy30ZtJNBPF9j2O1ITu5XH2YnBeVRKWHqF+3JQwWJv0Q0aUgX8W7IA==
1897+
typescript@3.4.1:
1898+
version "3.4.1"
1899+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.4.1.tgz#b6691be11a881ffa9a05765a205cb7383f3b63c6"
1900+
integrity sha512-3NSMb2VzDQm8oBTLH6Nj55VVtUEpe/rgkIzMir0qVoLyjDZlnMBva0U6vDiV3IH+sl/Yu6oP5QwsAQtHPmDd2Q==
19011901

19021902
uc.micro@^1.0.1, uc.micro@^1.0.5:
19031903
version "1.0.5"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
"source-map": "^0.4.4",
123123
"ts-loader": "^4.4.2",
124124
"tslint": "^5.11.0",
125-
"typescript": "3.3.1",
125+
"typescript": "3.4.1",
126126
"typescript-formatter": "7.1.0",
127127
"typescript-tslint-plugin": "^0.0.7",
128128
"uglify-es": "^3.0.18",

src/vs/workbench/contrib/debug/browser/linkDetector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export class LinkDetector {
138138

139139
private onLinkClick(event: IMouseEvent, resource: uri, line: number, column: number = 0): void {
140140
const selection = window.getSelection();
141-
if (selection.type === 'Range') {
141+
if (!selection || selection.type === 'Range') {
142142
return; // do not navigate when user is selecting
143143
}
144144

src/vs/workbench/services/textfile/common/textFileService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ export class TextFileService extends Disposable implements ITextFileService {
292292
}
293293

294294
private backupBeforeShutdown(dirtyToBackup: URI[], textFileEditorModelManager: ITextFileEditorModelManager, reason: ShutdownReason): Promise<IBackupResult> {
295-
return this.windowsService.getWindowCount().then(windowCount => {
295+
return this.windowsService.getWindowCount().then<IBackupResult>(windowCount => {
296296

297297
// When quit is requested skip the confirm callback and attempt to backup all workspaces.
298298
// When quit is not requested the confirm callback should be shown when the window being

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8874,10 +8874,10 @@ typescript-tslint-plugin@^0.0.7:
88748874
minimatch "^3.0.4"
88758875
vscode-languageserver "^5.1.0"
88768876

8877-
typescript@3.3.1:
8878-
version "3.3.1"
8879-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.3.1.tgz#6de14e1db4b8a006ac535e482c8ba018c55f750b"
8880-
integrity sha512-cTmIDFW7O0IHbn1DPYjkiebHxwtCMU+eTy30ZtJNBPF9j2O1ITu5XH2YnBeVRKWHqF+3JQwWJv0Q0aUgX8W7IA==
8877+
typescript@3.4.1:
8878+
version "3.4.1"
8879+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.4.1.tgz#b6691be11a881ffa9a05765a205cb7383f3b63c6"
8880+
integrity sha512-3NSMb2VzDQm8oBTLH6Nj55VVtUEpe/rgkIzMir0qVoLyjDZlnMBva0U6vDiV3IH+sl/Yu6oP5QwsAQtHPmDd2Q==
88818881

88828882
typescript@^2.6.2:
88838883
version "2.6.2"

0 commit comments

Comments
 (0)