diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-03-08 18:11:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-08 23:11:05 +0000 |
commit | 0146abd9fed309e0d9e11d9f74bbdccb33cd7c1c (patch) | |
tree | 26921135dc01841ebe4ef982e3967656fe88e4e0 /cli/schemas | |
parent | 119744c2856526479907039ced66adb8d25cb69d (diff) |
fix(config): add unstable features as examples to config schema (#22814)
Diffstat (limited to 'cli/schemas')
-rw-r--r-- | cli/schemas/config-file.v1.json | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/cli/schemas/config-file.v1.json b/cli/schemas/config-file.v1.json index 8b2b46134..9ae567931 100644 --- a/cli/schemas/config-file.v1.json +++ b/cli/schemas/config-file.v1.json @@ -542,7 +542,23 @@ "description": "List of unstable features to enable.", "items": { "type": "string" - } + }, + "examples": [ + "broadcast-channel", + "bare-node-builtins", + "byonm", + "cron", + "ffi", + "fs", + "http", + "kv", + "net", + "sloppy-imports", + "temporal", + "unsafe-proto", + "webgpu", + "worker-options" + ] }, "name": { "type": "string", |