From 9691206def28405d4e53c5a7753f96d15be46e79 Mon Sep 17 00:00:00 2001 From: Blake Embrey Date: Fri, 24 May 2019 18:30:56 -0700 Subject: [PATCH] Remove `realpath` support in compiler --- src/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 42efc134b..bf011d9a7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -320,7 +320,6 @@ export function register (opts: Options = {}): Register { readDirectory: debugFn('readDirectory', ts.sys.readDirectory), getDirectories: debugFn('getDirectories', ts.sys.getDirectories), directoryExists: cachedLookup(debugFn('directoryExists', ts.sys.directoryExists)), - realpath: debugFn('realpath', ts.sys.realpath!), getNewLine: () => ts.sys.newLine, useCaseSensitiveFileNames: () => ts.sys.useCaseSensitiveFileNames, getCurrentDirectory: () => cwd,