From db9faf6039310746ef4ad75f5f22fc0d7808cb15 Mon Sep 17 00:00:00 2001 From: Sheetal Nandi Date: Mon, 5 Oct 2015 15:37:13 -0700 Subject: [PATCH] Temp change to investigate test failure --- src/compiler/commandLineParser.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/compiler/commandLineParser.ts b/src/compiler/commandLineParser.ts index 603dff9e779..6daa1ec8857 100644 --- a/src/compiler/commandLineParser.ts +++ b/src/compiler/commandLineParser.ts @@ -458,6 +458,8 @@ namespace ts { * @param jsonText The text of the config file */ export function parseConfigFileText(fileName: string, jsonText: string): { config?: any; error?: Diagnostic } { + console.log("fileName: \"" + fileName + "\""); + console.log("jsonText: \"" + jsonText + "\""); try { return { config: /\S/.test(jsonText) ? JSON.parse(jsonText) : {} }; }