* Removes a specific file from the cache.
(filePath: string)
| 78 | * Removes a specific file from the cache. |
| 79 | */ |
| 80 | invalidate(filePath: string): void { |
| 81 | this.cache.delete(filePath) |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * Gets cache statistics for debugging/monitoring. |