Don't add in size of disabled projects

(cherry picked from commit 2721a8c8b4)
This commit is contained in:
Ryan Cavanaugh 2017-03-21 13:01:06 -07:00 committed by Bill Ticehurst
parent c66a5359e2
commit 1696df6c9e

View file

@ -874,7 +874,7 @@ namespace ts.server {
}
totalNonTsFileSize += this.host.getFileSize(fileName);
if (totalNonTsFileSize > maxProgramSizeForNonTsFiles) {
this.projectToSizeMap[name] = totalNonTsFileSize;
// Keep the size as zero since it's disabled
return true;
}
}