diff options
author | Eyal Shalev <eyalsh@gmail.com> | 2021-09-20 18:30:00 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-20 11:30:00 -0400 |
commit | 7c9c9e5c8389b0a052bf3f953625c4f09cb67eb7 (patch) | |
tree | 02015643bab5ad391a6d997f6f97f153559c8bbf | |
parent | 3708cbc6000dac17a26e07e81e02bcbebffe3d0f (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.json | 2 |
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" }, |