From 7c9c9e5c8389b0a052bf3f953625c4f09cb67eb7 Mon Sep 17 00:00:00 2001 From: Eyal Shalev Date: Mon, 20 Sep 2021 18:30:00 +0300 Subject: [PATCH] fix(config-schema): correct default value of "lib" (#12145) Changed it from `"deno.window"` to `["deno.window"]` --- cli/schemas/config-file.v1.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/schemas/config-file.v1.json b/cli/schemas/config-file.v1.json index c10ca80a13..8f9866f174 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" },