@azure/arm-databox 3.0.0 → 5.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (142) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/README.md +72 -73
  4. package/dist/index.js +5592 -0
  5. package/dist/index.js.map +1 -0
  6. package/dist/index.min.js +1 -0
  7. package/dist/index.min.js.map +1 -0
  8. package/dist-esm/src/dataBoxManagementClient.d.ts +29 -0
  9. package/dist-esm/src/dataBoxManagementClient.d.ts.map +1 -0
  10. package/dist-esm/src/dataBoxManagementClient.js +89 -0
  11. package/dist-esm/src/dataBoxManagementClient.js.map +1 -0
  12. package/dist-esm/src/index.d.ts +5 -0
  13. package/dist-esm/src/index.d.ts.map +1 -0
  14. package/dist-esm/src/index.js +12 -0
  15. package/dist-esm/src/index.js.map +1 -0
  16. package/dist-esm/src/lroImpl.d.ts +16 -0
  17. package/dist-esm/src/lroImpl.d.ts.map +1 -0
  18. package/dist-esm/src/lroImpl.js +29 -0
  19. package/dist-esm/src/lroImpl.js.map +1 -0
  20. package/dist-esm/src/models/index.d.ts +2157 -0
  21. package/dist-esm/src/models/index.d.ts.map +1 -0
  22. package/dist-esm/src/models/index.js +168 -0
  23. package/dist-esm/src/models/index.js.map +1 -0
  24. package/dist-esm/src/models/mappers.d.ts +163 -0
  25. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  26. package/dist-esm/src/models/mappers.js +3911 -0
  27. package/dist-esm/src/models/mappers.js.map +1 -0
  28. package/dist-esm/src/models/parameters.d.ts +24 -0
  29. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  30. package/dist-esm/src/models/parameters.js +176 -0
  31. package/dist-esm/src/models/parameters.js.map +1 -0
  32. package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
  33. package/dist-esm/src/operations/index.d.ts.map +1 -0
  34. package/dist-esm/src/operations/index.js +11 -0
  35. package/dist-esm/src/operations/index.js.map +1 -0
  36. package/dist-esm/src/operations/jobs.d.ts +161 -0
  37. package/dist-esm/src/operations/jobs.d.ts.map +1 -0
  38. package/dist-esm/src/operations/jobs.js +687 -0
  39. package/dist-esm/src/operations/jobs.js.map +1 -0
  40. package/dist-esm/src/operations/operations.d.ts +32 -0
  41. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  42. package/dist-esm/src/operations/operations.js +120 -0
  43. package/dist-esm/src/operations/operations.js.map +1 -0
  44. package/dist-esm/src/operations/service.d.ts +83 -0
  45. package/dist-esm/src/operations/service.d.ts.map +1 -0
  46. package/dist-esm/src/operations/service.js +307 -0
  47. package/dist-esm/src/operations/service.js.map +1 -0
  48. package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
  49. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  50. package/dist-esm/src/operationsInterfaces/index.js +11 -0
  51. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  52. package/dist-esm/src/operationsInterfaces/jobs.d.ts +115 -0
  53. package/dist-esm/src/operationsInterfaces/jobs.d.ts.map +1 -0
  54. package/dist-esm/src/operationsInterfaces/jobs.js +9 -0
  55. package/dist-esm/src/operationsInterfaces/jobs.js.map +1 -0
  56. package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
  57. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  58. package/dist-esm/src/operationsInterfaces/operations.js +9 -0
  59. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  60. package/dist-esm/src/operationsInterfaces/service.d.ts +54 -0
  61. package/dist-esm/src/operationsInterfaces/service.d.ts.map +1 -0
  62. package/dist-esm/src/operationsInterfaces/service.js +9 -0
  63. package/dist-esm/src/operationsInterfaces/service.js.map +1 -0
  64. package/dist-esm/test/sampleTest.d.ts +2 -0
  65. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  66. package/dist-esm/test/sampleTest.js +40 -0
  67. package/dist-esm/test/sampleTest.js.map +1 -0
  68. package/package.json +65 -31
  69. package/review/arm-databox.api.md +1376 -0
  70. package/rollup.config.js +181 -30
  71. package/src/dataBoxManagementClient.ts +113 -29
  72. package/src/index.ts +12 -0
  73. package/src/lroImpl.ts +34 -0
  74. package/src/models/index.ts +1924 -1354
  75. package/src/models/mappers.ts +3160 -1086
  76. package/src/models/parameters.ts +144 -54
  77. package/src/operations/index.ts +3 -5
  78. package/src/operations/jobs.ts +702 -480
  79. package/src/operations/operations.ts +89 -75
  80. package/src/operations/service.ts +342 -127
  81. package/src/operationsInterfaces/index.ts +11 -0
  82. package/src/operationsInterfaces/jobs.ts +205 -0
  83. package/src/operationsInterfaces/operations.ts +22 -0
  84. package/src/operationsInterfaces/service.ts +107 -0
  85. package/tsconfig.json +3 -3
  86. package/types/arm-databox.d.ts +2558 -0
  87. package/types/tsdoc-metadata.json +11 -0
  88. package/dist/arm-databox.js +0 -3090
  89. package/dist/arm-databox.js.map +0 -1
  90. package/dist/arm-databox.min.js +0 -1
  91. package/dist/arm-databox.min.js.map +0 -1
  92. package/esm/dataBoxManagementClient.d.ts +0 -20
  93. package/esm/dataBoxManagementClient.d.ts.map +0 -1
  94. package/esm/dataBoxManagementClient.js +0 -35
  95. package/esm/dataBoxManagementClient.js.map +0 -1
  96. package/esm/dataBoxManagementClientContext.d.ts +0 -16
  97. package/esm/dataBoxManagementClientContext.d.ts.map +0 -1
  98. package/esm/dataBoxManagementClientContext.js +0 -57
  99. package/esm/dataBoxManagementClientContext.js.map +0 -1
  100. package/esm/models/index.d.ts +0 -1754
  101. package/esm/models/index.d.ts.map +0 -1
  102. package/esm/models/index.js +0 -8
  103. package/esm/models/index.js.map +0 -1
  104. package/esm/models/jobsMappers.d.ts +0 -2
  105. package/esm/models/jobsMappers.d.ts.map +0 -1
  106. package/esm/models/jobsMappers.js +0 -9
  107. package/esm/models/jobsMappers.js.map +0 -1
  108. package/esm/models/mappers.d.ts +0 -75
  109. package/esm/models/mappers.d.ts.map +0 -1
  110. package/esm/models/mappers.js +0 -2020
  111. package/esm/models/mappers.js.map +0 -1
  112. package/esm/models/operationsMappers.d.ts +0 -2
  113. package/esm/models/operationsMappers.d.ts.map +0 -1
  114. package/esm/models/operationsMappers.js +0 -9
  115. package/esm/models/operationsMappers.js.map +0 -1
  116. package/esm/models/parameters.d.ts +0 -12
  117. package/esm/models/parameters.d.ts.map +0 -1
  118. package/esm/models/parameters.js +0 -122
  119. package/esm/models/parameters.js.map +0 -1
  120. package/esm/models/serviceMappers.d.ts +0 -2
  121. package/esm/models/serviceMappers.d.ts.map +0 -1
  122. package/esm/models/serviceMappers.js +0 -9
  123. package/esm/models/serviceMappers.js.map +0 -1
  124. package/esm/operations/index.d.ts.map +0 -1
  125. package/esm/operations/index.js +0 -13
  126. package/esm/operations/index.js.map +0 -1
  127. package/esm/operations/jobs.d.ts +0 -245
  128. package/esm/operations/jobs.d.ts.map +0 -1
  129. package/esm/operations/jobs.js +0 -444
  130. package/esm/operations/jobs.js.map +0 -1
  131. package/esm/operations/operations.d.ts +0 -46
  132. package/esm/operations/operations.d.ts.map +0 -1
  133. package/esm/operations/operations.js +0 -77
  134. package/esm/operations/operations.js.map +0 -1
  135. package/esm/operations/service.d.ts +0 -79
  136. package/esm/operations/service.d.ts.map +0 -1
  137. package/esm/operations/service.js +0 -126
  138. package/esm/operations/service.js.map +0 -1
  139. package/src/dataBoxManagementClientContext.ts +0 -69
  140. package/src/models/jobsMappers.ts +0 -55
  141. package/src/models/operationsMappers.ts +0 -15
  142. package/src/models/serviceMappers.ts +0 -22
@@ -0,0 +1,205 @@
1
+ /*
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
4
+ *
5
+ * Code generated by Microsoft (R) AutoRest Code Generator.
6
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
+ */
8
+
9
+ import { PagedAsyncIterableIterator } from "@azure/core-paging";
10
+ import { PollerLike, PollOperationState } from "@azure/core-lro";
11
+ import {
12
+ JobResource,
13
+ JobsListOptionalParams,
14
+ JobsListByResourceGroupOptionalParams,
15
+ UnencryptedCredentials,
16
+ JobsListCredentialsOptionalParams,
17
+ MarkDevicesShippedRequest,
18
+ JobsMarkDevicesShippedOptionalParams,
19
+ JobsGetOptionalParams,
20
+ JobsGetResponse,
21
+ JobsCreateOptionalParams,
22
+ JobsCreateResponse,
23
+ JobsDeleteOptionalParams,
24
+ JobResourceUpdateParameter,
25
+ JobsUpdateOptionalParams,
26
+ JobsUpdateResponse,
27
+ ShipmentPickUpRequest,
28
+ JobsBookShipmentPickUpOptionalParams,
29
+ JobsBookShipmentPickUpResponse,
30
+ CancellationReason,
31
+ JobsCancelOptionalParams
32
+ } from "../models";
33
+
34
+ /// <reference lib="esnext.asynciterable" />
35
+ /** Interface representing a Jobs. */
36
+ export interface Jobs {
37
+ /**
38
+ * Lists all the jobs available under the subscription.
39
+ * @param options The options parameters.
40
+ */
41
+ list(
42
+ options?: JobsListOptionalParams
43
+ ): PagedAsyncIterableIterator<JobResource>;
44
+ /**
45
+ * Lists all the jobs available under the given resource group.
46
+ * @param resourceGroupName The Resource Group Name
47
+ * @param options The options parameters.
48
+ */
49
+ listByResourceGroup(
50
+ resourceGroupName: string,
51
+ options?: JobsListByResourceGroupOptionalParams
52
+ ): PagedAsyncIterableIterator<JobResource>;
53
+ /**
54
+ * This method gets the unencrypted secrets related to the job.
55
+ * @param resourceGroupName The Resource Group Name
56
+ * @param jobName The name of the job Resource within the specified resource group. job names must be
57
+ * between 3 and 24 characters in length and use any alphanumeric and underscore only
58
+ * @param options The options parameters.
59
+ */
60
+ listCredentials(
61
+ resourceGroupName: string,
62
+ jobName: string,
63
+ options?: JobsListCredentialsOptionalParams
64
+ ): PagedAsyncIterableIterator<UnencryptedCredentials>;
65
+ /**
66
+ * Request to mark devices for a given job as shipped
67
+ * @param jobName The name of the job Resource within the specified resource group. job names must be
68
+ * between 3 and 24 characters in length and use any alphanumeric and underscore only
69
+ * @param resourceGroupName The Resource Group Name
70
+ * @param markDevicesShippedRequest Mark Devices Shipped Request
71
+ * @param options The options parameters.
72
+ */
73
+ markDevicesShipped(
74
+ jobName: string,
75
+ resourceGroupName: string,
76
+ markDevicesShippedRequest: MarkDevicesShippedRequest,
77
+ options?: JobsMarkDevicesShippedOptionalParams
78
+ ): Promise<void>;
79
+ /**
80
+ * Gets information about the specified job.
81
+ * @param resourceGroupName The Resource Group Name
82
+ * @param jobName The name of the job Resource within the specified resource group. job names must be
83
+ * between 3 and 24 characters in length and use any alphanumeric and underscore only
84
+ * @param options The options parameters.
85
+ */
86
+ get(
87
+ resourceGroupName: string,
88
+ jobName: string,
89
+ options?: JobsGetOptionalParams
90
+ ): Promise<JobsGetResponse>;
91
+ /**
92
+ * Creates a new job with the specified parameters. Existing job cannot be updated with this API and
93
+ * should instead be updated with the Update job API.
94
+ * @param resourceGroupName The Resource Group Name
95
+ * @param jobName The name of the job Resource within the specified resource group. job names must be
96
+ * between 3 and 24 characters in length and use any alphanumeric and underscore only
97
+ * @param jobResource Job details from request body.
98
+ * @param options The options parameters.
99
+ */
100
+ beginCreate(
101
+ resourceGroupName: string,
102
+ jobName: string,
103
+ jobResource: JobResource,
104
+ options?: JobsCreateOptionalParams
105
+ ): Promise<
106
+ PollerLike<PollOperationState<JobsCreateResponse>, JobsCreateResponse>
107
+ >;
108
+ /**
109
+ * Creates a new job with the specified parameters. Existing job cannot be updated with this API and
110
+ * should instead be updated with the Update job API.
111
+ * @param resourceGroupName The Resource Group Name
112
+ * @param jobName The name of the job Resource within the specified resource group. job names must be
113
+ * between 3 and 24 characters in length and use any alphanumeric and underscore only
114
+ * @param jobResource Job details from request body.
115
+ * @param options The options parameters.
116
+ */
117
+ beginCreateAndWait(
118
+ resourceGroupName: string,
119
+ jobName: string,
120
+ jobResource: JobResource,
121
+ options?: JobsCreateOptionalParams
122
+ ): Promise<JobsCreateResponse>;
123
+ /**
124
+ * Deletes a job.
125
+ * @param resourceGroupName The Resource Group Name
126
+ * @param jobName The name of the job Resource within the specified resource group. job names must be
127
+ * between 3 and 24 characters in length and use any alphanumeric and underscore only
128
+ * @param options The options parameters.
129
+ */
130
+ beginDelete(
131
+ resourceGroupName: string,
132
+ jobName: string,
133
+ options?: JobsDeleteOptionalParams
134
+ ): Promise<PollerLike<PollOperationState<void>, void>>;
135
+ /**
136
+ * Deletes a job.
137
+ * @param resourceGroupName The Resource Group Name
138
+ * @param jobName The name of the job Resource within the specified resource group. job names must be
139
+ * between 3 and 24 characters in length and use any alphanumeric and underscore only
140
+ * @param options The options parameters.
141
+ */
142
+ beginDeleteAndWait(
143
+ resourceGroupName: string,
144
+ jobName: string,
145
+ options?: JobsDeleteOptionalParams
146
+ ): Promise<void>;
147
+ /**
148
+ * Updates the properties of an existing job.
149
+ * @param resourceGroupName The Resource Group Name
150
+ * @param jobName The name of the job Resource within the specified resource group. job names must be
151
+ * between 3 and 24 characters in length and use any alphanumeric and underscore only
152
+ * @param jobResourceUpdateParameter Job update parameters from request body.
153
+ * @param options The options parameters.
154
+ */
155
+ beginUpdate(
156
+ resourceGroupName: string,
157
+ jobName: string,
158
+ jobResourceUpdateParameter: JobResourceUpdateParameter,
159
+ options?: JobsUpdateOptionalParams
160
+ ): Promise<
161
+ PollerLike<PollOperationState<JobsUpdateResponse>, JobsUpdateResponse>
162
+ >;
163
+ /**
164
+ * Updates the properties of an existing job.
165
+ * @param resourceGroupName The Resource Group Name
166
+ * @param jobName The name of the job Resource within the specified resource group. job names must be
167
+ * between 3 and 24 characters in length and use any alphanumeric and underscore only
168
+ * @param jobResourceUpdateParameter Job update parameters from request body.
169
+ * @param options The options parameters.
170
+ */
171
+ beginUpdateAndWait(
172
+ resourceGroupName: string,
173
+ jobName: string,
174
+ jobResourceUpdateParameter: JobResourceUpdateParameter,
175
+ options?: JobsUpdateOptionalParams
176
+ ): Promise<JobsUpdateResponse>;
177
+ /**
178
+ * Book shipment pick up.
179
+ * @param resourceGroupName The Resource Group Name
180
+ * @param jobName The name of the job Resource within the specified resource group. job names must be
181
+ * between 3 and 24 characters in length and use any alphanumeric and underscore only
182
+ * @param shipmentPickUpRequest Details of shipment pick up request.
183
+ * @param options The options parameters.
184
+ */
185
+ bookShipmentPickUp(
186
+ resourceGroupName: string,
187
+ jobName: string,
188
+ shipmentPickUpRequest: ShipmentPickUpRequest,
189
+ options?: JobsBookShipmentPickUpOptionalParams
190
+ ): Promise<JobsBookShipmentPickUpResponse>;
191
+ /**
192
+ * CancelJob.
193
+ * @param resourceGroupName The Resource Group Name
194
+ * @param jobName The name of the job Resource within the specified resource group. job names must be
195
+ * between 3 and 24 characters in length and use any alphanumeric and underscore only
196
+ * @param cancellationReason Reason for cancellation.
197
+ * @param options The options parameters.
198
+ */
199
+ cancel(
200
+ resourceGroupName: string,
201
+ jobName: string,
202
+ cancellationReason: CancellationReason,
203
+ options?: JobsCancelOptionalParams
204
+ ): Promise<void>;
205
+ }
@@ -0,0 +1,22 @@
1
+ /*
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
4
+ *
5
+ * Code generated by Microsoft (R) AutoRest Code Generator.
6
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
+ */
8
+
9
+ import { PagedAsyncIterableIterator } from "@azure/core-paging";
10
+ import { Operation, OperationsListOptionalParams } from "../models";
11
+
12
+ /// <reference lib="esnext.asynciterable" />
13
+ /** Interface representing a Operations. */
14
+ export interface Operations {
15
+ /**
16
+ * This method gets all the operations.
17
+ * @param options The options parameters.
18
+ */
19
+ list(
20
+ options?: OperationsListOptionalParams
21
+ ): PagedAsyncIterableIterator<Operation>;
22
+ }
@@ -0,0 +1,107 @@
1
+ /*
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
4
+ *
5
+ * Code generated by Microsoft (R) AutoRest Code Generator.
6
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
+ */
8
+
9
+ import { PagedAsyncIterableIterator } from "@azure/core-paging";
10
+ import {
11
+ SkuInformation,
12
+ AvailableSkuRequest,
13
+ ServiceListAvailableSkusByResourceGroupOptionalParams,
14
+ ValidateAddress,
15
+ ServiceValidateAddressOptionalParams,
16
+ ServiceValidateAddressResponse,
17
+ ValidationRequestUnion,
18
+ ServiceValidateInputsByResourceGroupOptionalParams,
19
+ ServiceValidateInputsByResourceGroupResponse,
20
+ ServiceValidateInputsOptionalParams,
21
+ ServiceValidateInputsResponse,
22
+ RegionConfigurationRequest,
23
+ ServiceRegionConfigurationOptionalParams,
24
+ ServiceRegionConfigurationResponse,
25
+ ServiceRegionConfigurationByResourceGroupOptionalParams,
26
+ ServiceRegionConfigurationByResourceGroupResponse
27
+ } from "../models";
28
+
29
+ /// <reference lib="esnext.asynciterable" />
30
+ /** Interface representing a Service. */
31
+ export interface Service {
32
+ /**
33
+ * This method provides the list of available skus for the given subscription, resource group and
34
+ * location.
35
+ * @param resourceGroupName The Resource Group Name
36
+ * @param location The location of the resource
37
+ * @param availableSkuRequest Filters for showing the available skus.
38
+ * @param options The options parameters.
39
+ */
40
+ listAvailableSkusByResourceGroup(
41
+ resourceGroupName: string,
42
+ location: string,
43
+ availableSkuRequest: AvailableSkuRequest,
44
+ options?: ServiceListAvailableSkusByResourceGroupOptionalParams
45
+ ): PagedAsyncIterableIterator<SkuInformation>;
46
+ /**
47
+ * [DEPRECATED NOTICE: This operation will soon be removed]. This method validates the customer
48
+ * shipping address and provide alternate addresses if any.
49
+ * @param location The location of the resource
50
+ * @param validateAddress Shipping address of the customer.
51
+ * @param options The options parameters.
52
+ */
53
+ validateAddress(
54
+ location: string,
55
+ validateAddress: ValidateAddress,
56
+ options?: ServiceValidateAddressOptionalParams
57
+ ): Promise<ServiceValidateAddressResponse>;
58
+ /**
59
+ * This method does all necessary pre-job creation validation under resource group.
60
+ * @param resourceGroupName The Resource Group Name
61
+ * @param location The location of the resource
62
+ * @param validationRequest Inputs of the customer.
63
+ * @param options The options parameters.
64
+ */
65
+ validateInputsByResourceGroup(
66
+ resourceGroupName: string,
67
+ location: string,
68
+ validationRequest: ValidationRequestUnion,
69
+ options?: ServiceValidateInputsByResourceGroupOptionalParams
70
+ ): Promise<ServiceValidateInputsByResourceGroupResponse>;
71
+ /**
72
+ * This method does all necessary pre-job creation validation under subscription.
73
+ * @param location The location of the resource
74
+ * @param validationRequest Inputs of the customer.
75
+ * @param options The options parameters.
76
+ */
77
+ validateInputs(
78
+ location: string,
79
+ validationRequest: ValidationRequestUnion,
80
+ options?: ServiceValidateInputsOptionalParams
81
+ ): Promise<ServiceValidateInputsResponse>;
82
+ /**
83
+ * This API provides configuration details specific to given region/location at Subscription level.
84
+ * @param location The location of the resource
85
+ * @param regionConfigurationRequest Request body to get the configuration for the region.
86
+ * @param options The options parameters.
87
+ */
88
+ regionConfiguration(
89
+ location: string,
90
+ regionConfigurationRequest: RegionConfigurationRequest,
91
+ options?: ServiceRegionConfigurationOptionalParams
92
+ ): Promise<ServiceRegionConfigurationResponse>;
93
+ /**
94
+ * This API provides configuration details specific to given region/location at Resource group level.
95
+ * @param resourceGroupName The Resource Group Name
96
+ * @param location The location of the resource
97
+ * @param regionConfigurationRequest Request body to get the configuration for the region at resource
98
+ * group level.
99
+ * @param options The options parameters.
100
+ */
101
+ regionConfigurationByResourceGroup(
102
+ resourceGroupName: string,
103
+ location: string,
104
+ regionConfigurationRequest: RegionConfigurationRequest,
105
+ options?: ServiceRegionConfigurationByResourceGroupOptionalParams
106
+ ): Promise<ServiceRegionConfigurationByResourceGroupResponse>;
107
+ }
package/tsconfig.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "module": "es6",
4
4
  "moduleResolution": "node",
5
5
  "strict": true,
6
- "target": "es5",
6
+ "target": "es6",
7
7
  "sourceMap": true,
8
8
  "declarationMap": true,
9
9
  "esModuleInterop": true,
@@ -11,9 +11,9 @@
11
11
  "forceConsistentCasingInFileNames": true,
12
12
  "lib": ["es6", "dom"],
13
13
  "declaration": true,
14
- "outDir": "./esm",
14
+ "outDir": "./dist-esm",
15
15
  "importHelpers": true
16
16
  },
17
- "include": ["./src/**/*.ts"],
17
+ "include": ["./src/**/*.ts", "./test/**/*.ts"],
18
18
  "exclude": ["node_modules"]
19
19
  }