fix(config-schema): correct default value of "lib" (#12145)

Changed it from `"deno.window"` to `["deno.window"]`
This commit is contained in:
Eyal Shalev 2021-09-20 18:30:00 +03:00 committed by GitHub
parent 3708cbc600
commit 7c9c9e5c83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"
},