diff --git a/src/compiler/emitter.ts b/src/compiler/emitter.ts index 3b3351ada69..103519c87e3 100644 --- a/src/compiler/emitter.ts +++ b/src/compiler/emitter.ts @@ -1508,8 +1508,7 @@ module ts { // @internal // targetSourceFile is when users only want one file in entire project to be emitted. This is used in compilerOnSave feature - export function emitFiles(resolver: EmitResolver, host: EmitHost, targetSourceFile: SourceFile): EmitResult - { + export function emitFiles(resolver: EmitResolver, host: EmitHost, targetSourceFile: SourceFile): EmitResult { var compilerOptions = host.getCompilerOptions(); var languageVersion = compilerOptions.target || ScriptTarget.ES3; var sourceMapDataList: SourceMapData[] = compilerOptions.sourceMap ? [] : undefined;