Parsed, validated view of a project's `codegraph.json`.
| 86 | |
| 87 | /** Parsed, validated view of a project's `codegraph.json`. */ |
| 88 | interface ParsedConfig { |
| 89 | extensions: Record<string, Language>; |
| 90 | includeIgnored: string[]; |
| 91 | exclude: string[]; |
| 92 | deprioritize: string[]; |
| 93 | include: string[]; |
| 94 | } |
| 95 | |
| 96 | interface CacheEntry { |
| 97 | mtimeMs: number; |
nothing calls this directly
no outgoing calls
no test coverage detected