import { HttpHealthCheckStrategy, TypeORMHealthCheckStrategy } from '@vendure/core';export const config = { // ... systemOptions: { healthChecks: [ new TypeORMHealthCheckStrategy(), new HttpHealthCheckStrategy({ key: 'my-service', url: 'https://my-service.com' }), ] },};