summaryrefslogtreecommitdiff
path: root/cli/schemas
diff options
context:
space:
mode:
authorNathan Whitaker <17734409+nathanwhit@users.noreply.github.com>2024-04-24 15:56:23 -0400
committerGitHub <noreply@github.com>2024-04-24 12:56:23 -0700
commit764f3901631099c87577c898536f57be3038c150 (patch)
tree99493027ab456c45048ffc109b87bc42a045386b /cli/schemas
parenta6c24729491b90da7c6d6ec78b2ea6662e92cb80 (diff)
chore(cli): Add workspaces property to config schema (#23546)
Diffstat (limited to 'cli/schemas')
-rw-r--r--cli/schemas/config-file.v1.json7
1 files changed, 7 insertions, 0 deletions
diff --git a/cli/schemas/config-file.v1.json b/cli/schemas/config-file.v1.json
index a3bab7ad5..a4fb35bc4 100644
--- a/cli/schemas/config-file.v1.json
+++ b/cli/schemas/config-file.v1.json
@@ -597,6 +597,13 @@
"examples": [{ ".": "./mod.ts" }]
}
]
+ },
+ "workspaces": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The members of this workspace."
}
}
}