Parsed, validated view of a project's `codegraph.json`.
| 57 | |
| 58 | /** Parsed, validated view of a project's `codegraph.json`. */ |
| 59 | interface ParsedConfig { |
| 60 | extensions: Record<string, Language>; |
| 61 | includeIgnored: string[]; |
| 62 | exclude: string[]; |
| 63 | } |
| 64 | |
| 65 | interface CacheEntry { |
| 66 | mtimeMs: number; |
nothing calls this directly
no outgoing calls
no test coverage detected