We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 928da67 commit 95b5a69Copy full SHA for 95b5a69
1 file changed
src/server/project.ts
@@ -646,7 +646,7 @@ namespace ts.server {
646
647
const added: string[] = [];
648
const removed: string[] = [];
649
- const updated: string[] = arrayFrom(updatedFileNames.keys());
+ const updated: string[] = updatedFileNames ? arrayFrom(updatedFileNames.keys()) : [];
650
651
forEachKey(currentFiles, id => {
652
if (!lastReportedFileNames.has(id)) {
0 commit comments