Don't add in size of disabled projects

This commit is contained in:
Ryan Cavanaugh 2017-03-21 13:01:06 -07:00
parent ff0947996c
commit 2721a8c8b4

View file

@ -873,7 +873,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;
}
}