From f2adb2900d93677517215a8ab6ccc10d95a5df48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mi=C5=A1ko=20Hevery?= Date: Thu, 2 Mar 2017 11:07:22 -0800 Subject: [PATCH] refactor: remove the symlink hack from tsc-wrapped (#14837) --- tools/@angular/tsc-wrapped/src/main.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tools/@angular/tsc-wrapped/src/main.ts b/tools/@angular/tsc-wrapped/src/main.ts index 201eeb0f3e..024a2f26b4 100644 --- a/tools/@angular/tsc-wrapped/src/main.ts +++ b/tools/@angular/tsc-wrapped/src/main.ts @@ -55,11 +55,6 @@ export function main( let host = ts.createCompilerHost(parsed.options, true); - // HACK: patch the realpath to solve symlink issue here: - // https://github.com/Microsoft/TypeScript/issues/9552 - // todo(misko): remove once facade symlinks are removed - host.realpath = (path) => path; - // If the comilation is a flat module index then produce the flat module index // metadata and the synthetic flat module index. if (ngOptions.flatModuleOutFile && !ngOptions.skipMetadataEmit) {