mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
fix: update nodeModulesDir config JSON schema (#25653)
Ref https://github.com/denoland/deno/issues/25380
This commit is contained in:
parent
315baeb50a
commit
28dd928962
1 changed files with 13 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"$id": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"description": "A JSON representation of a Deno configuration file.",
|
||||
"required": [],
|
||||
"title": "Deno configuration file Schema",
|
||||
|
@ -405,8 +405,18 @@
|
|||
}
|
||||
},
|
||||
"nodeModulesDir": {
|
||||
"description": "Enables or disables the use of a local node_modules folder for npm packages. Alternatively, use the `--node-modules-dir` flag or override the config via `--node-modules-dir=false`. Requires Deno 1.34 or later.",
|
||||
"type": "boolean"
|
||||
"oneOf": [
|
||||
{
|
||||
"description": "Sets the node_modules management mode for npm packages. Alternatively, use the `--node-modules-dir=<MODE>` flag. Requires Deno 2.0-rc.1 or later.",
|
||||
"default": "none",
|
||||
"enum": ["auto", "manual", "none"]
|
||||
},
|
||||
{
|
||||
"description": "Enables or disables the use of a local node_modules folder for npm packages. Alternatively, use the `--node-modules-dir` flag or override the config via `--node-modules-dir=false`. Requires Deno 1.34 or later.",
|
||||
"type": "boolean",
|
||||
"deprecated": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"vendor": {
|
||||
"description": "Enables or disables the use of a local vendor folder as a local cache for remote modules and node_modules folder for npm packages. Alternatively, use the `--vendor` flag or override the config via `--vendor=false`. Requires Deno 1.36.1 or later.",
|
||||
|
|
Loading…
Reference in a new issue