Ignore wild card directory watchers with node_modules file or folder starting with .

This commit is contained in:
Sheetal Nandi
2018-10-30 11:06:13 -07:00
parent d32c1b091a
commit c9fadf1f46
5 changed files with 92 additions and 27 deletions

View File

@@ -938,6 +938,8 @@ namespace ts {
}
nextSourceFileVersion(fileOrDirectoryPath);
if (isPathInNodeModulesStartingWithDot(fileOrDirectoryPath)) return;
// If the the added or created file or directory is not supported file name, ignore the file
// But when watched directory is added/removed, we need to reload the file list
if (fileOrDirectoryPath !== directory && hasExtension(fileOrDirectoryPath) && !isSupportedSourceFileName(fileOrDirectory, compilerOptions)) {