mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-15 12:51:30 -05:00
Store diabled projects as 0
(cherry picked from commite9e7271fc3) (cherry picked from commit35e77171e9)
This commit is contained in:
committed by
Bill Ticehurst
parent
e5313bda21
commit
eef0505f55
@@ -879,8 +879,12 @@ namespace ts.server {
|
||||
}
|
||||
}
|
||||
|
||||
if (totalNonTsFileSize > availableSpace) {
|
||||
return true;
|
||||
}
|
||||
|
||||
this.projectToSizeMap[name] = totalNonTsFileSize;
|
||||
return totalNonTsFileSize > availableSpace;
|
||||
return false;
|
||||
}
|
||||
|
||||
private createAndAddExternalProject(projectFileName: string, files: protocol.ExternalFile[], options: protocol.ExternalProjectCompilerOptions, typeAcquisition: TypeAcquisition) {
|
||||
|
||||
Reference in New Issue
Block a user