MCPcopy Create free account
hub / github.com/BCsabaEngine/svelteesp32 / loadRcFileConfig

Function loadRcFileConfig

src/commandLine.ts:319–323  ·  view source on GitHub ↗
(configPath?: string)

Source from the content-addressed store, hash-verified

317}
318
319export function loadRcFileConfig(configPath?: string): Partial<IRcFileConfig> {
320 const rcPath = findRcFile(configPath);
321 if (!rcPath) return {};
322 return loadRcFile(rcPath);
323}
324
325function validateSizeOption(configObject: Record<string, unknown>, key: string): void {
326 const value = configObject[key];

Callers 1

closeBundleFunction · 0.90

Calls 2

findRcFileFunction · 0.85
loadRcFileFunction · 0.85

Tested by

no test coverage detected