mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -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.",
|
"description": "Specify a set of bundled library declaration files that describe the target runtime environment.",
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"default": "deno.window",
|
"default": ["deno.window"],
|
||||||
"items": {
|
"items": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue