source: frontend/node_modules/@pmmmwh/react-refresh-webpack-plugin/loader/options.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 1009 bytes
Line 
1{
2 "additionalProperties": false,
3 "type": "object",
4 "definitions": {
5 "MatchCondition": {
6 "anyOf": [{ "instanceof": "RegExp", "tsType": "RegExp" }, { "$ref": "#/definitions/Path" }]
7 },
8 "MatchConditions": {
9 "type": "array",
10 "items": { "$ref": "#/definitions/MatchCondition" },
11 "minItems": 1
12 },
13 "Path": { "type": "string" },
14 "ESModuleOptions": {
15 "additionalProperties": false,
16 "type": "object",
17 "properties": {
18 "exclude": {
19 "anyOf": [
20 { "$ref": "#/definitions/MatchCondition" },
21 { "$ref": "#/definitions/MatchConditions" }
22 ]
23 },
24 "include": {
25 "anyOf": [
26 { "$ref": "#/definitions/MatchCondition" },
27 { "$ref": "#/definitions/MatchConditions" }
28 ]
29 }
30 }
31 }
32 },
33 "properties": {
34 "const": { "type": "boolean" },
35 "esModule": { "anyOf": [{ "type": "boolean" }, { "$ref": "#/definitions/ESModuleOptions" }] }
36 }
37}
Note: See TracBrowser for help on using the repository browser.