diff --git a/src/compiler/commandLineParser.ts b/src/compiler/commandLineParser.ts index 6daa1ec8857..603dff9e779 100644 --- a/src/compiler/commandLineParser.ts +++ b/src/compiler/commandLineParser.ts @@ -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) : {} }; }