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 6ce7989 commit 9df6f71Copy full SHA for 9df6f71
src/compiler/sys.ts
@@ -1279,7 +1279,7 @@ namespace ts {
1279
1280
const platform: string = _os.platform();
1281
const useCaseSensitiveFileNames = isFileSystemCaseSensitive();
1282
- const realpathSync = useCaseSensitiveFileNames ? (_fs.realpathSync.native ?? _fs.realpathSync) : _fs.realpathSync;
+ const realpathSync = _fs.realpathSync.native ?? _fs.realpathSync;
1283
1284
const fsSupportsRecursiveFsWatch = isNode4OrLater && (process.platform === "win32" || process.platform === "darwin");
1285
const getCurrentDirectory = memoize(() => process.cwd());
0 commit comments