Function: performHealthCheck()
function performHealthCheck(): Promise<HealthCheckResult>;
Defined in: packages/uimatch-selector-anchors/src/core/health-check.ts:44
Perform health check for the plugin
Validates:
- TypeScript compiler availability (required)
- parse5 HTML parser availability (optional, for HTML support)
Returns
Promise<HealthCheckResult>
Health check result with status and issues
Example
const health = await performHealthCheck();
if (!health.healthy) {
console.error('Plugin health issues:', health.issues);
}