Merge remote-tracking branch 'upstream/master' into jsDoc2

This commit is contained in:
Ryan Cavanaugh
2016-01-06 13:51:45 -08:00
76 changed files with 1622 additions and 343 deletions

View File

@@ -100,7 +100,8 @@ namespace ts.server {
this.filenameToScript = createFileMap<ScriptInfo>();
this.moduleResolutionHost = {
fileExists: fileName => this.fileExists(fileName),
readFile: fileName => this.host.readFile(fileName)
readFile: fileName => this.host.readFile(fileName),
directoryExists: directoryName => this.host.directoryExists(directoryName)
};
}