File tree Expand file tree Collapse file tree 2 files changed +23
-68
lines changed Expand file tree Collapse file tree 2 files changed +23
-68
lines changed Original file line number Diff line number Diff line change 2
2
"$schema" : " http://json-schema.org/draft-04/schema#" ,
3
3
"type" : " object" ,
4
4
"properties" : {
5
- "fallbackLoader" : {
6
- "type" : " object" ,
7
- "properties" : {
8
- "type" : {
9
- "type" : " string"
10
- }
11
- },
12
- "required" : [
13
- " type"
14
- ]
15
- },
16
- "loader" : {
17
- "type" : " object" ,
18
- "properties" : {
19
- "type" : {
20
- "type" : " string"
21
- }
22
- },
23
- "required" : [
24
- " type"
25
- ]
26
- },
27
- "publicPath" : {
28
- "type" : " object" ,
29
- "properties" : {
30
- "type" : {
31
- "type" : " string"
32
- }
33
- },
34
- "required" : [
35
- " type"
36
- ]
5
+ "allChunks" : {
6
+ "description" : " " ,
7
+ "type" : " boolean"
37
8
},
38
9
"disable" : {
39
- "type" : " object" ,
40
- "properties" : {
41
- "type" : {
42
- "type" : " string"
43
- }
44
- },
45
- "required" : [
46
- " type"
47
- ]
10
+ "description" : " " ,
11
+ "type" : " boolean"
48
12
},
49
- "allChunks" : {
50
- "type" : " object" ,
51
- "properties" : {
52
- "type" : {
53
- "type" : " string"
54
- }
55
- },
56
- "required" : [
57
- " type"
58
- ]
13
+ "fallbackLoader" : {
14
+ "description" : " A loader that webpack can fall back to if the original one fails." ,
15
+ "type" : " string"
59
16
},
60
17
"filename" : {
61
- "type" : " object" ,
62
- "properties" : {
63
- "type" : {
64
- "type" : " string"
65
- }
66
- },
67
- "required" : [
68
- " type"
69
- ]
18
+ "description" : " The filename and path that ExtractTextPlugin will extract to." ,
19
+ "type" : " string"
20
+ },
21
+ "loader" : {
22
+ "description" : " The loader that ExtractTextPlugin will attempt to load through." ,
23
+ "type" : " string"
24
+ },
25
+ "publicPath" : {
26
+ "description" : " " ,
27
+ "type" : " string"
70
28
}
71
29
},
72
- "required" : [
73
- " loader" ,
74
- " filename"
75
- ]
30
+ "required" : [" loader" ]
76
31
}
Original file line number Diff line number Diff line change 1
1
{
2
+ "allChunks" : { "type" : " boolean" },
3
+ "disable" : { "type" : " boolean" },
2
4
"fallbackLoader" : { "type" : " string" },
5
+ "filename" : { "type" : " string" },
3
6
"loader" : { "type" : " string" },
4
- "publicPath" : { "type" : " string" },
5
- "disable" : { "type" : " boolean" },
6
- "allChunks" : { "type" : " boolean" },
7
- "filename" : { "type" : " string" }
7
+ "publicPath" : { "type" : " string" }
8
8
}
You can’t perform that action at this time.
0 commit comments