build(broccoli-typescript): add missing semicolon

This commit is contained in:
Igor Minar 2015-05-14 10:36:17 -07:00
parent 4ba81bf3eb
commit 37a8f1037e
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ class DiffingTSCompiler implements DiffingBroccoliPlugin {
this.rootFilePaths = options.rootFilePaths ? options.rootFilePaths.splice(0) : [];
this.tsServiceHost = new CustomLanguageServiceHost(this.tsOpts, this.rootFilePaths,
this.fileRegistry, this.inputPath);
this.tsService = ts.createLanguageService(this.tsServiceHost, ts.createDocumentRegistry())
this.tsService = ts.createLanguageService(this.tsServiceHost, ts.createDocumentRegistry());
}