Build with TS 2.7 (#45348)

* Pick up TS 2.7

* Fix formatter in build script

* Fix build error for ts 2.7

* Pick up new ts format and tslint versions

* Update lock

* use 2.7.2 for build

* Formatting
This commit is contained in:
Matt Bierner
2018-03-08 16:58:32 -08:00
committed by GitHub
parent 54d1d53218
commit 82be8c8b01
55 changed files with 3666 additions and 3666 deletions

View File

@@ -62,7 +62,7 @@ class ActiveWindowManager implements IDisposable {
private disposables: IDisposable[] = [];
private _activeWindowId: number;
constructor( @IWindowsService windowsService: IWindowsService) {
constructor(@IWindowsService windowsService: IWindowsService) {
windowsService.onWindowOpen(this.setActiveWindow, this, this.disposables);
windowsService.onWindowFocus(this.setActiveWindow, this, this.disposables);
}