aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@angular-devkit/architect/src/targets-schema.json
blob: 912c20ff1cd17ac2ade97439612ff738f51cff49 (plain) (blame)
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
{
  "$schema": "http://json-schema.org/draft-07/schema",
  "$id": "ArchitectTargets",
  "title": "Targets schema for validating Architect targets configuration.",
  "type": "object",
  "description": "A map of available project targets.",
  "additionalProperties": {
    "$ref": "#/definitions/target"
  },
  "required": [],
  "definitions": {
    "target": {
      "type": "object",
      "description": "Target options.",
      "properties": {
        "builder": {
          "type": "string",
          "description": "The builder used for this package."
        },
        "options": {
          "$ref": "#/definitions/options"
        },
        "configurations": {
          "type": "object",
          "description": "A map of alternative target options.",
          "additionalProperties": {
            "$ref": "#/definitions/options"
          }
        }
      },
      "additionalProperties": false,
      "required": ["builder", "options"]
    },
    "options": {
      "type": "object",
      "description": "Target options."
    }
  }
}