summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEyal Shalev <eyalsh@gmail.com>2021-09-20 18:30:00 +0300
committerGitHub <noreply@github.com>2021-09-20 11:30:00 -0400
commit7c9c9e5c8389b0a052bf3f953625c4f09cb67eb7 (patch)
tree02015643bab5ad391a6d997f6f97f153559c8bbf
parent3708cbc6000dac17a26e07e81e02bcbebffe3d0f (diff)
fix(config-schema): correct default value of "lib" (#12145)
Changed it from `"deno.window"` to `["deno.window"]`
-rw-r--r--cli/schemas/config-file.v1.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/schemas/config-file.v1.json b/cli/schemas/config-file.v1.json
index c10ca80a1..8f9866f17 100644
--- a/cli/schemas/config-file.v1.json
+++ b/cli/schemas/config-file.v1.json
@@ -73,7 +73,7 @@
"description": "Specify a set of bundled library declaration files that describe the target runtime environment.",
"type": "array",
"uniqueItems": true,
- "default": "deno.window",
+ "default": ["deno.window"],
"items": {
"type": "string"
},