build: update npm dependencies

This commit is contained in:
Olivier Combe
2017-09-25 10:43:45 +02:00
committed by Alex Rickabaugh
parent 2d5ef15e08
commit df91fd032d
79 changed files with 1259 additions and 1222 deletions

View File

@ -27,6 +27,7 @@ export function formatDiagnostics(d: ts.Diagnostic[]): string {
* Implementation of CompilerHost that forwards all methods to another instance.
* Useful for partial implementations to override only methods they care about.
*/
// tslint:disable:semicolon
export abstract class DelegatingHost implements ts.CompilerHost {
constructor(protected delegate: ts.CompilerHost) {}
getSourceFile =
@ -166,4 +167,4 @@ export class SyntheticIndexHost extends DelegatingHost {
writeFileSync(metadataName, this.indexMetadata, 'utf8');
}
}
}
}