( currentDirectory string, useCaseSensitiveFileNames bool, options *core.CompilerOptions, )
| 62 | } |
| 63 | |
| 64 | func newCaches( |
| 65 | currentDirectory string, |
| 66 | useCaseSensitiveFileNames bool, |
| 67 | options *core.CompilerOptions, |
| 68 | ) caches { |
| 69 | return caches{ |
| 70 | packageJsonInfoCache: packagejson.NewInfoCache(currentDirectory, useCaseSensitiveFileNames), |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | func getRedirectConfigName(redirect ResolvedProjectReference) string { |
| 75 | if redirect == nil { |
no test coverage detected