fix(config): cap generated schema export types

This commit is contained in:
Peter Steinberger
2026-04-05 07:57:54 +01:00
parent 20803dac14
commit 68851f2e97
5 changed files with 16 additions and 21 deletions

View File

@@ -34,7 +34,7 @@ export function renderBaseConfigSchemaModule(params?: { generatedAt?: string }):
import type { BaseConfigSchemaResponse } from "./schema-base.js";
export const GENERATED_BASE_CONFIG_SCHEMA = ${JSON.stringify(payload, null, 2)} as const satisfies BaseConfigSchemaResponse;
export const GENERATED_BASE_CONFIG_SCHEMA: BaseConfigSchemaResponse = ${JSON.stringify(payload, null, 2)};
`,
DEFAULT_OUTPUT_PATH,
);