This commit is contained in:
chrosey
2017-09-13 07:52:34 +02:00
parent a1f16c37f4
commit 2340b0226b
24621 changed files with 2912161 additions and 149 deletions
+36
View File
@@ -0,0 +1,36 @@
{
"type": "object",
"additionalProperties": false,
"properties": {
"allChunks": {
"type": "boolean"
},
"disable": {
"type": "boolean"
},
"omit": {
"type": "boolean"
},
"remove": {
"type": "boolean"
},
"fallback": {
"type": ["string", "array", "object"]
},
"filename": {
"type": "string"
},
"use": {
"type": ["string", "array", "object"]
},
"publicPath": {
"type": "string"
},
"fallbackLoader": {
"type": ["string", "array", "object"]
},
"loader": {
"type": ["string", "array", "object"]
}
}
}
+40
View File
@@ -0,0 +1,40 @@
{
"type": "object",
"additionalProperties": false,
"properties": {
"allChunks": {
"description": "",
"type": "boolean"
},
"disable": {
"description": "",
"type": "boolean"
},
"fallback": {
"description": "A loader that webpack can fall back to if the original one fails.",
"modes": {
"type": ["string", "object", "array"]
}
},
"filename": {
"description": "The filename and path that ExtractTextPlugin will extract to",
"modes": {
"type": ["string", "function"]
}
},
"ignoreOrder": {
"description": "Ignore dependency order (useful for CSS Modules)",
"type": "boolean"
},
"loader": {
"description": "The loader that ExtractTextPlugin will attempt to load through.",
"modes": {
"type": ["string", "object", "array"]
}
},
"publicPath": {
"description": "",
"type": "string"
}
}
}