refactor: remove the symlink hack from tsc-wrapped (#14837)
This commit is contained in:
parent
8343fb7740
commit
f2adb2900d
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue