fix incorrect config schema in Docs (`TypeSpecProjectSchema.output-dir`) (#4965)

## description

The schema that was incorrectly referred to as `boolean` in the
documentation has been corrected to the correct one.

## referense

- relevant code

78140e410d/website/src/content/docs/docs/handbook/configuration/configuration.md?plain=1#L32

- schema source code

78140e410d/packages/compiler/src/config/config-schema.ts (L46-L49)
This commit is contained in:
keito 2024-11-07 04:12:12 +09:00 коммит произвёл GitHub
Родитель ad3a7a1359
Коммит 163912b68a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -29,7 +29,7 @@ model TypeSpecProjectSchema {
parameters?: Record<{default: string}> parameters?: Record<{default: string}>
"environment-variables"?: Record<{default: string}> "environment-variables"?: Record<{default: string}>
"warn-as-error"?: boolean; "warn-as-error"?: boolean;
"output-dir"?: boolean; "output-dir"?: string;
"trace"?: string | string[]; "trace"?: string | string[];
imports?: string; imports?: string;
emit?: string[]; emit?: string[];