We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3c00dc4 + b3f7cd9 commit a5fde9cCopy full SHA for a5fde9c
javascript/extractor/src/com/semmle/js/extractor/AutoBuild.java
@@ -1087,6 +1087,12 @@ private Set<Path> extractTypeScript(
1087
remainingTypeScriptFiles.add(f);
1088
}
1089
1090
+ for (Map.Entry<Path, FileSnippet> entry : state.getSnippets().entrySet()) {
1091
+ if (!extractedFiles.contains(entry.getKey())
1092
+ && FileType.forFileExtension(entry.getKey().toFile()) == FileType.TYPESCRIPT) {
1093
+ remainingTypeScriptFiles.add(entry.getKey());
1094
+ }
1095
1096
if (!remainingTypeScriptFiles.isEmpty()) {
1097
extractTypeScriptFiles(remainingTypeScriptFiles, extractedFiles, extractors);
1098
0 commit comments