From e190b2329ce6ae80b7b7b2b6058ec6a085256f98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=9F=8C=88=20Adrian=20Barku=C5=9F?= Date: Fri, 16 Aug 2019 14:09:06 -0400 Subject: [PATCH] fix: #825 handle symlinked modules (ala pnpm) correctly --- src/compiler.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler.ts b/src/compiler.ts index d910f99b57..04cf6a8273 100644 --- a/src/compiler.ts +++ b/src/compiler.ts @@ -162,6 +162,7 @@ export function createCompiler(configs: ConfigSet): TsCompiler { readDirectory: ts.sys.readDirectory, getDirectories: ts.sys.getDirectories, directoryExists: ts.sys.directoryExists, + realpath: ts.sys.realpath, getNewLine: () => '\n', getCurrentDirectory: () => cwd, getCompilationSettings: () => compilerOptions,