source: trip-planner-front/node_modules/webpack/schemas/plugins/schemes/HttpUriPlugin.json@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.2 KB
Line 
1{
2 "definitions": {
3 "HttpUriOptions": {
4 "description": "Options for building http resources.",
5 "type": "object",
6 "additionalProperties": false,
7 "properties": {
8 "cacheLocation": {
9 "description": "Location where resource content is stored for lockfile entries. It's also possible to disable storing by passing false.",
10 "anyOf": [
11 {
12 "enum": [false]
13 },
14 {
15 "type": "string",
16 "absolutePath": true
17 }
18 ]
19 },
20 "frozen": {
21 "description": "When set, anything that would lead to a modification of the lockfile or any resource content, will result in an error.",
22 "type": "boolean"
23 },
24 "lockfileLocation": {
25 "description": "Location of the lockfile.",
26 "type": "string",
27 "absolutePath": true
28 },
29 "upgrade": {
30 "description": "When set, resources of existing lockfile entries will be fetched and entries will be upgraded when resource content has changed.",
31 "type": "boolean"
32 }
33 }
34 }
35 },
36 "title": "HttpUriPluginOptions",
37 "oneOf": [
38 {
39 "$ref": "#/definitions/HttpUriOptions"
40 }
41 ]
42}
Note: See TracBrowser for help on using the repository browser.