(path1, path2, host)
| 42525 | } |
| 42526 | var nodeModulesAtTypes = ts.combinePaths("node_modules", "@types"); |
| 42527 | function arePathsEqual(path1, path2, host) { |
| 42528 | var useCaseSensitiveFileNames = typeof host.useCaseSensitiveFileNames === "function" ? host.useCaseSensitiveFileNames() : host.useCaseSensitiveFileNames; |
| 42529 | return ts.comparePaths(path1, path2, !useCaseSensitiveFileNames) === 0 /* Comparison.EqualTo */; |
| 42530 | } |
| 42531 | /** |
| 42532 | * @param {string | undefined} containingFile - file that contains type reference directive, can be undefined if containing file is unknown. |
| 42533 | * This is possible in case if resolution is performed for directives specified via 'types' parameter. In this case initial path for secondary lookups |
no outgoing calls
no test coverage detected