diff --git a/src/config/types.ts b/src/config/types.ts index 65915bcd5..36345a174 100644 --- a/src/config/types.ts +++ b/src/config/types.ts @@ -158,7 +158,9 @@ export interface RcConfig { /** @see https://jamiemason.github.io/syncpack/integrations/json-schema */ $schema?: string; /** @see https://jamiemason.github.io/syncpack/config/custom-types */ - customTypes: Record; + customTypes: { + [name: string]: CustomTypeConfig.Any; + }; /** @see https://jamiemason.github.io/syncpack/config/dependency-types */ dependencyTypes: DependencyType[]; /** @see https://jamiemason.github.io/syncpack/config/filter */