Use getNormalizedAbsolutePath to combine basePath and config value for file names

Fixes #34502 by being consistent in path normalization
This commit is contained in:
Sheetal Nandi
2019-10-16 15:38:29 -07:00
parent a4044ca684
commit 9fa7d8b3b9
3 changed files with 2 additions and 5 deletions
+1 -2
View File
@@ -241,10 +241,9 @@ namespace ts {
}
const currentDirectory = sys.getCurrentDirectory();
const getCanonicalFileName = createGetCanonicalFileName(sys.useCaseSensitiveFileNames);
const commandLineOptions = convertToOptionsWithAbsolutePaths(
commandLine.options,
fileName => toPath(fileName, currentDirectory, getCanonicalFileName)
fileName => getNormalizedAbsolutePath(fileName, currentDirectory)
);
if (configFileName) {
const configParseResult = parseConfigFileWithSystem(configFileName, commandLineOptions, sys, reportDiagnostic)!; // TODO: GH#18217