MCPcopy Index your code
hub / github.com/angular/angular / createParseConfigHost

Function createParseConfigHost

packages/compiler-cli/src/perform_compile.ts:183–190  ·  view source on GitHub ↗
(host: ConfigurationHost, fs = getFileSystem())

Source from the content-addressed store, hash-verified

181}
182
183function 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
192function getExtendedConfigPath(
193 configFile: string,

Callers 2

readConfigurationFunction · 0.85

Calls 4

getFileSystemFunction · 0.90
bindMethod · 0.65
isCaseSensitiveMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…