We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a42c0f6 commit bf80f07Copy full SHA for bf80f07
javascript/extractor/src/com/semmle/js/extractor/AutoBuild.java
@@ -1140,7 +1140,7 @@ public FileVisitResult visitFile(Path file, BasicFileAttributes attrs)
1140
1141
// extract TypeScript projects from 'tsconfig.json'
1142
if (typeScriptMode == TypeScriptMode.FULL
1143
- && file.getFileName().endsWith("tsconfig.json")
+ && (file.getFileName().toString().contains("tsconfig.") && file.getFileName().toString().endsWith(".json"))
1144
&& !excludes.contains(file)
1145
&& isFileIncluded(file)) {
1146
tsconfigFiles.add(file);
0 commit comments