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) : {} }; }