This commit is contained in:
Ryan Cavanaugh 2017-03-21 11:41:58 -07:00
parent 16c7bcfebb
commit 7b17f6affe

View file

@ -879,7 +879,7 @@ namespace ts.server {
}
this.projectToSizeMap[name] = totalNonTsFileSize;
return totalNonTsFileSize < availableSpace;
return totalNonTsFileSize > availableSpace;
}
private createAndAddExternalProject(projectFileName: string, files: protocol.ExternalFile[], options: protocol.ExternalProjectCompilerOptions, typeAcquisition: TypeAcquisition) {