(host: ConfigurationHost, fs = getFileSystem())
| 181 | } |
| 182 | |
| 183 | function createParseConfigHost(host: ConfigurationHost, fs = getFileSystem()): ts.ParseConfigHost { |
| 184 | return { |
| 185 | fileExists: host.exists.bind(host), |
| 186 | readDirectory: createFileSystemTsReadDirectoryFn(fs), |
| 187 | readFile: host.readFile.bind(host), |
| 188 | useCaseSensitiveFileNames: fs.isCaseSensitive(), |
| 189 | }; |
| 190 | } |
| 191 | |
| 192 | function getExtendedConfigPath( |
| 193 | configFile: string, |
no test coverage detected
searching dependent graphs…