Conform lint of the future, unify quotations

This commit is contained in:
Wesley Wigham
2015-07-23 17:30:31 -07:00
parent 5a6d476797
commit 91f034669d
21 changed files with 592 additions and 592 deletions

View File

@@ -335,7 +335,7 @@ namespace ts {
* @param fileName The path to the config file
*/
export function readConfigFile(fileName: string): { config?: any; error?: Diagnostic } {
let text = '';
let text = "";
try {
text = sys.readFile(fileName);
}