Skip to content

Commit e898ca2

Browse files
Use path alias in imports (#3935) (#3937)
* Use path alias * Remove deprecated property * Pleasing the linting gods (cherry picked from commit de5c2ef) Co-authored-by: Laurent Saint-Félix <[email protected]>
1 parent e877c1b commit e898ca2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

specification/connector/update_filtering_validation/ConnectorUpdateFilteringValidationRequest.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19+
import { FilteringRulesValidation } from '@connector/_types/Connector'
1920
import { RequestBase } from '@_types/Base'
2021
import { Id } from '@_types/common'
21-
import { FilteringRulesValidation } from 'connector/_types/Connector'
2222

2323
/**
2424
* Update the connector draft filtering validation.

specification/fleet/msearch/MultiSearchResponse.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* under the License.
1818
*/
1919

20-
import { ResponseItem } from '_global/msearch/types'
20+
import { ResponseItem } from '@global/msearch/types'
2121

2222
// Keep changes in sync with:
2323
// - msearch

specification/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
"removeComments": true,
1313
"noLib": false,
1414
"preserveConstEnums": true,
15-
"suppressImplicitAnyIndexErrors": true,
1615
"noEmit": true,
1716
"typeRoots": ["./**/*.ts"],
1817
"baseUrl": "./",
@@ -25,6 +24,7 @@
2524
"@cat/*": ["cat/*"],
2625
"@ccr/*": ["ccr/*"],
2726
"@cluster/*": ["cluster/*"],
27+
"@connector/*": ["connector/*"],
2828
"@dangling_indices/*": ["dangling_indices/*"],
2929
"@enrich/*": ["enrich/*"],
3030
"@eql/*": ["eql/*"],

0 commit comments

Comments
 (0)