D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
nodevenv
/
washeet.softurecs.com
/
24
/
lib
/
node_modules
/
zod
/
src
/
v4
/
core
/
Filename :
config.ts
back
Copy
import type * as errors from "./errors.js"; export interface $ZodConfig { /** Custom error map. Overrides `config().localeError`. */ customError?: errors.$ZodErrorMap | undefined; /** Localized error map. Lowest priority. */ localeError?: errors.$ZodErrorMap | undefined; } export const globalConfig: $ZodConfig = {}; export function config(config?: Partial<$ZodConfig>): $ZodConfig { if (config) Object.assign(globalConfig, config); return globalConfig; }