MCPcopy Index your code
hub / github.com/getsentry/XcodeBuildMCP / getConfigPath

Function getConfigPath

src/utils/project-config.ts:81–83  ·  view source on GitHub ↗
(cwd: string)

Source from the content-addressed store, hash-verified

79}
80
81function getConfigPath(cwd: string): string {
82 return path.join(getConfigDir(cwd), CONFIG_FILE);
83}
84
85function isPlainObject(value: unknown): value is Record<string, unknown> {
86 return typeof value === 'object' && value !== null && !Array.isArray(value);

Calls 1

getConfigDirFunction · 0.85

Tested by

no test coverage detected