export function parseJSON(jsonString: string): any | null { try { return JSON.parse(jsonString); } catch { return null; } }