MCPcopy
hub / github.com/benjitaylor/agentation / ResolvedConfig

Interface ResolvedConfig

package/src/utils/react-detection.ts:197–205  ·  view source on GitHub ↗

* Resolved configuration with all defaults applied

Source from the content-addressed store, hash-verified

195 * Resolved configuration with all defaults applied
196 */
197interface ResolvedConfig {
198 maxComponents: number;
199 maxDepth: number;
200 mode: ReactDetectionMode;
201 skipExact: Set<string>;
202 skipPatterns: RegExp[];
203 userPatterns: RegExp[];
204 filter?: (name: string, depth: number) => boolean;
205}
206
207function resolveConfig(config?: ReactDetectionConfig): ResolvedConfig {
208 const mode = config?.mode ?? "filtered";

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…