summaryrefslogtreecommitdiffstats
path: root/node_modules/webpack-cli/bin/config/webpackConfigurationSchema.json
blob: e05f443fdfc4c17f27e5b0ede25da98a4b3f0cca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "anyOf": [
    {
      "type": "object",
      "description": "A webpack configuration object."
    },
    {
      "type": "array",
      "description": "An array of webpack configuration objects.",
      "items": {
        "description": "A webpack configuration object.",
        "type": "object"
      }
    },
    {
      "instanceof": "Promise",
      "description": "A promise that resolves with a configuration object, or an array of configuration objects."
    }
  ]
}