Skip to content

@stephansama packages / @stephansama/multipublish / schema / configSchema

Variable: configSchema

ts
const configSchema: ZodObject<{
  platforms: ZodArray<ZodUnion<[ZodUnion<[ZodUnion<[ZodLiteral<"jsr">, ZodLiteral<"npm">]>, ZodTuple<[ZodLiteral<"jsr">, ZodObject<{
     allowSlowTypes: ...;
     defaultExclude: ...;
     defaultInclude: ...;
     experimentalGenerateJSR: ...;
     experimentalUpdateCatalogs: ...;
   }, $strip>], null>]>, ZodTuple<[ZodLiteral<"npm">, ZodObject<{
     registry: ZodDefault<ZodString>;
     strategy: ZodDefault<ZodEnum<...>>;
     tokenEnvironmentKey: ZodDefault<ZodString>;
  }, $strip>], null>]>>;
  tmpDirectory: ZodDefault<ZodString>;
  useChangesets: ZodDefault<ZodBoolean>;
}, $strip>;

Defined in: core/multipublish/src/schema.ts:29

Released under MIT license