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 82d4ccc commit 8e05f4eCopy full SHA for 8e05f4e
src/compiler/moduleNameResolver.ts
@@ -29,6 +29,14 @@ namespace ts {
29
path: string;
30
extension: Extension;
31
packageId: PackageId | undefined;
32
+ /**
33
+ * When the resolved is not created from cache, the value is
34
+ * - string if original Path if it is symbolic link to the resolved path
35
+ * - undefined if path is not a symbolic link
36
+ * When the resolved is created using value from cache of ResolvedModuleWithFailedLookupLocations, the value is:
37
38
+ * - true if path is not a symbolic link - this indicates that the originalPath calculation is already done and needs to be skipped
39
+ */
40
originalPath?: string | true;
41
}
42
0 commit comments