diff options
Diffstat (limited to 'cli/schemas')
-rw-r--r-- | cli/schemas/config-file.v1.json | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cli/schemas/config-file.v1.json b/cli/schemas/config-file.v1.json index 55ea417f0..2ab06aead 100644 --- a/cli/schemas/config-file.v1.json +++ b/cli/schemas/config-file.v1.json @@ -310,6 +310,17 @@ } } } + }, + "tasks": { + "description": "Configuration for deno task", + "type": "object", + "patternProperties": { + "^[A-Za-z][A-Za-z0-9_\\-]*$": { + "type": "string", + "description": "Command to execute for this task name." + } + }, + "additionalProperties": false } } } |