We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5919595 commit d182d7fCopy full SHA for d182d7f
src/compiler/core.ts
@@ -928,7 +928,7 @@ namespace ts {
928
* [^./] # matches everything up to the first . character (excluding directory seperators)
929
* (\\.(?!min\\.js$))? # matches . characters but not if they are part of the .min.js file extension
930
*/
931
- const singleAsteriskRegexFragmentFiles = "([^./]*(\\.(?!min\\.js$))?)*";
+ const singleAsteriskRegexFragmentFiles = "([^./]|(\\.(?!min\\.js$))?)*";
932
const singleAsteriskRegexFragmentOther = "[^/]*";
933
934
export function getRegularExpressionForWildcard(specs: string[], basePath: string, usage: "files" | "directories" | "exclude") {
0 commit comments