0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-04 01:44:26 -05:00

fix(cli): add compilerOptions.lib examples to config-file.v1.json (#28226)

closes #28222
This commit is contained in:
Kenta Moriuchi 2025-02-24 18:49:32 +09:00 committed by GitHub
parent 2212d7d814
commit f373a20a6f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -111,7 +111,35 @@
"uniqueItems": true, "uniqueItems": true,
"default": ["deno.window"], "default": ["deno.window"],
"items": { "items": {
"type": "string" "type": "string",
"examples": [
"deno.ns",
"deno.window",
"deno.worker",
"deno.unstable",
"dom",
"dom.iterable",
"dom.asynciterable",
"webworker",
"webworker.importscripts",
"webworker.iterable",
"webworker.asynciterable",
"scripthost",
"decorators",
"decorators.legacy",
"es5",
"es2015",
"es2016",
"es2017",
"es2018",
"es2019",
"es2020",
"es2021",
"es2022",
"es2023",
"es2024",
"esnext"
]
}, },
"markdownDescription": "Specify a set of bundled library declaration files that describe the target runtime environment.\n\nSee more: https://www.typescriptlang.org/tsconfig#lib" "markdownDescription": "Specify a set of bundled library declaration files that describe the target runtime environment.\n\nSee more: https://www.typescriptlang.org/tsconfig#lib"
}, },