(importingSourceFileName, host)
| 122123 | } |
| 122124 | // importingSourceFileName is separate because getEditsForFileRename may need to specify an updated path |
| 122125 | function getInfo(importingSourceFileName, host) { |
| 122126 | var getCanonicalFileName = ts.createGetCanonicalFileName(host.useCaseSensitiveFileNames ? host.useCaseSensitiveFileNames() : true); |
| 122127 | var sourceDirectory = ts.getDirectoryPath(importingSourceFileName); |
| 122128 | return { getCanonicalFileName: getCanonicalFileName, importingSourceFileName: importingSourceFileName, sourceDirectory: sourceDirectory }; |
| 122129 | } |
| 122130 | function getLocalModuleSpecifier(moduleFileName, info, compilerOptions, host, _a) { |
| 122131 | var ending = _a.ending, relativePreference = _a.relativePreference; |
| 122132 | var baseUrl = compilerOptions.baseUrl, paths = compilerOptions.paths, rootDirs = compilerOptions.rootDirs; |
no test coverage detected