-
Notifications
You must be signed in to change notification settings - Fork 683
Expand file tree
/
Copy pathrush-user-settings.schema.json
More file actions
31 lines (28 loc) · 1.1 KB
/
rush-user-settings.schema.json
File metadata and controls
31 lines (28 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Rush per-user settings file",
"description": "For use with the Rush tool, this file stores user-specific settings options. See http://rushjs.io for details.",
"type": "object",
"properties": {
"$schema": {
"description": "Part of the JSON Schema standard, this optional keyword declares the URL of the schema that the file conforms to. Editors may download the schema and use it to perform syntax highlighting.",
"type": "string"
},
"buildCacheFolder": {
"type": "string",
"description": "If provided, store build cache in the specified folder. Must be an absolute path."
},
"pnpm": {
"type": "object",
"description": "PNPM-specific user configuration options.",
"properties": {
"storePath": {
"type": "string",
"description": "If provided, specifies the path for the PNPM store directory. Can be overridden by the RUSH_PNPM_STORE_PATH environment variable."
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}