Parsed, validated view of a project's `codegraph.json`.
| 71 | |
| 72 | /** Parsed, validated view of a project's `codegraph.json`. */ |
| 73 | interface ParsedConfig { |
| 74 | extensions: Record<string, Language>; |
| 75 | includeIgnored: string[]; |
| 76 | exclude: string[]; |
| 77 | include: string[]; |
| 78 | } |
| 79 | |
| 80 | interface CacheEntry { |
| 81 | mtimeMs: number; |
nothing calls this directly
no outgoing calls
no test coverage detected