Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Line | |
---|
1 | {
|
---|
2 | "$schema": "http://json-schema.org/draft-07/schema",
|
---|
3 | "$id": "ng-cli://commands/analytics.json",
|
---|
4 | "description": "Configures the gathering of Angular CLI usage metrics. See https://angular.io/cli/usage-analytics-gathering.",
|
---|
5 | "$longDescription": "./analytics-long.md",
|
---|
6 |
|
---|
7 | "$aliases": [],
|
---|
8 | "$scope": "all",
|
---|
9 | "$type": "native",
|
---|
10 | "$impl": "./analytics-impl#AnalyticsCommand",
|
---|
11 |
|
---|
12 | "type": "object",
|
---|
13 | "allOf": [
|
---|
14 | {
|
---|
15 | "properties": {
|
---|
16 | "settingOrProject": {
|
---|
17 | "enum": ["on", "off", "ci", "project", "prompt"],
|
---|
18 | "description": "Directly enables or disables all usage analytics for the user, or prompts the user to set the status interactively, or sets the default status for the project.",
|
---|
19 | "$default": {
|
---|
20 | "$source": "argv",
|
---|
21 | "index": 0
|
---|
22 | }
|
---|
23 | },
|
---|
24 | "projectSetting": {
|
---|
25 | "enum": ["on", "off", "prompt"],
|
---|
26 | "description": "Sets the default analytics enablement status for the project.",
|
---|
27 | "$default": {
|
---|
28 | "$source": "argv",
|
---|
29 | "index": 1
|
---|
30 | }
|
---|
31 | }
|
---|
32 | },
|
---|
33 | "required": ["settingOrProject"]
|
---|
34 | },
|
---|
35 | { "$ref": "./definitions.json#/definitions/base" }
|
---|
36 | ]
|
---|
37 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.