Temp change to investigate test failure

This commit is contained in:
Sheetal Nandi 2015-10-05 15:37:13 -07:00
parent b3e4f8e1ca
commit db9faf6039

View File

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