mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-23 17:30:04 -05:00
Removing console logs that were for debugging
This commit is contained in:
@@ -458,8 +458,6 @@ 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) : {} };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user