Skip to content

Commit

Permalink
docs: courseについて追記
Browse files Browse the repository at this point in the history
  • Loading branch information
tufusa committed Sep 8, 2024
1 parent 61dfcb9 commit 357f4f8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@ departments: [
- `limitSeconds`
- 型: `number`
- 試合の制限時間です。単位は秒です。
- `course`
- 型: `CourseConfig`
- コース数の設定です。部門種別ごとに使用するコースの数を設定します。`baseConfig.departments``type`に指定した値がキーになります。空にすることはできません。

<details open>
<summary>例: 予選と本戦の2種別の場合</summary>
Expand All @@ -151,11 +154,18 @@ matches: [
type: "pre",
name: "予選",
limitSeconds: 180,
course: {
elementary: 3, // 予選は小学生部門が3コース
},
},
{
type: "main",
name: "本戦",
limitSeconds: 180,
course: {
elementary: 2, // 本選は小学生部門が2コース
open: 1, // オープン部門は本選の1コースのみ
},
},
],
```
Expand Down

0 comments on commit 357f4f8

Please sign in to comment.