diff --git a/src/compiler/commandLineParser.ts b/src/compiler/commandLineParser.ts index ec86d4f4288..b3a081d6b05 100644 --- a/src/compiler/commandLineParser.ts +++ b/src/compiler/commandLineParser.ts @@ -642,7 +642,7 @@ namespace ts { value = normalizePath(combinePaths(basePath, value)); if (value === "") { value = "."; - } + } } options[opt.name] = value; } diff --git a/src/services/services.ts b/src/services/services.ts index 4f7e2ba8d1e..bdd3db708be 100644 --- a/src/services/services.ts +++ b/src/services/services.ts @@ -13,7 +13,7 @@ namespace ts { /** The version of the language service API */ - export const servicesVersion = "0.4"; + export const servicesVersion = "0.5"; export interface Node { getSourceFile(): SourceFile;