We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b93d112 commit ece7786Copy full SHA for ece7786
1 file changed
src/compiler/commandLineParser.ts
@@ -579,6 +579,11 @@ namespace ts {
579
continue;
580
}
581
582
+ // Skip over any minified JavaScript files (ending in ".min.js")
583
+ if (/\.min\.js$/.test(fileName)) {
584
+ continue;
585
+ }
586
+
587
// If this is one of the output extension (which would be .d.ts and .js if we are allowing compilation of js files)
588
// do not include this file if we included .ts or .tsx file with same base name as it could be output of the earlier compilation
589
if (extension === ".d.ts" || (options.allowJs && contains(supportedJavascriptExtensions, extension))) {
0 commit comments