Type Alias: Config
Makaio Framework / contracts / Config
Type Alias: Config
Section titled “Type Alias: Config”Config =
z.infer<typeofConfigSchema>
Defined in: ../../../packages/contracts/src/config/config-schema.ts:141
Inferred type for the bootstrap config.
Type Composition
Section titled “Type Composition”Configz.infer<typeof ConfigSchema>typeof ConfigSchema
Resolved Shape
Section titled “Resolved Shape”type Config = { $schema: 'makaio/config/v1'; mode: 'local' | 'remote' | 'hybrid'; role: 'main-dev-machine' | 'server'; bus?: { remote?: { url?: string | undefined; secret?: string | undefined; } | undefined; } | undefined; relay?: { autoReconnect: boolean; maxReconnectAttempts: number; heartbeatInterval: number; url?: string | undefined; token?: string | undefined; } | undefined; features?: { voiceBridge: boolean; } | undefined; fileWatcher?: { backend: 'auto' | 'watchman' | 'parcel' | 'chokidar'; } | undefined;};