()
| 44164 | return ts.ensureTrailingDirectorySeparator(ts.combinePaths(root, dir)); |
| 44165 | } |
| 44166 | function useCaseSensitiveFileNames() { |
| 44167 | return !state.host.useCaseSensitiveFileNames ? true : |
| 44168 | typeof state.host.useCaseSensitiveFileNames === "boolean" ? state.host.useCaseSensitiveFileNames : |
| 44169 | state.host.useCaseSensitiveFileNames(); |
| 44170 | } |
| 44171 | function tryLoadInputFileForPath(finalPath, entry, packagePath, isImports) { |
| 44172 | var _a, _b, _c, _d; |
| 44173 | // Replace any references to outputs for files in the program with the input files to support package self-names used with outDir |
no outgoing calls
no test coverage detected
searching dependent graphs…