mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
fix(config-schema): correct default value of "lib" (#12145)
Changed it from `"deno.window"` to `["deno.window"]`
This commit is contained in:
parent
3708cbc600
commit
7c9c9e5c83
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue