We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a56b254 commit bbb42f4Copy full SHA for bbb42f4
src/compiler/resolutionCache.ts
@@ -127,7 +127,7 @@ namespace ts {
127
const isNonDirectorySeparatorRoot = rootLength > 1 || dirPath.charCodeAt(0) !== CharacterCodes.slash;
128
if (isNonDirectorySeparatorRoot &&
129
dirPath.search(/[a-zA-Z]:/) !== 0 && // Non dos style paths
130
- pathPartForUserCheck.search(/[a-zA-z]\$\//) === 0) { // Dos style nextPart
+ pathPartForUserCheck.search(/[a-zA-Z]\$\//) === 0) { // Dos style nextPart
131
nextDirectorySeparator = dirPath.indexOf(directorySeparator, nextDirectorySeparator + 1);
132
if (nextDirectorySeparator === -1) {
133
// ignore "//vda1cs4850/c$/folderAtRoot"
0 commit comments