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 e4f7add commit fc5d94dCopy full SHA for fc5d94d
src/compiler/commandLineParser.ts
@@ -553,6 +553,11 @@ namespace ts {
553
continue;
554
}
555
556
+ // Skip over any minified JavaScript files (ending in ".min.js")
557
+ if (/\.min\.js$/.test(fileName)) {
558
+ continue;
559
+ }
560
+
561
// If this is one of the output extension (which would be .d.ts and .js if we are allowing compilation of js files)
562
// 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
563
if (extension === ".d.ts" || (options.allowJs && contains(supportedJavascriptExtensions, extension))) {
0 commit comments