Blame view

node_modules/extract-text-webpack-plugin/schema/plugin.json 968 Bytes
2a09d1a4   liuqimichale   添加宜春 天水 宣化
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
32
33
34
35
36
37
38
39
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"
      }
    }
  }