kibana/packages/kbn-test/tsconfig.json
Pierre Gayvallet e70fceaf9d
[FTR] KbnClientSavedObjects improvements (#149582)
## Summary

Follow-up of https://github.com/elastic/kibana/pull/149188


- Use the bulkDelete API for `KbnClientSavedObjects.bulkDelete`
- Create a dedicated `/_clean` endpoint for
`KbnClientSavedObjects.clean` and
`KbnClientSavedObjects.cleanStandardList`

---------

Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
2023-01-30 09:05:53 -07:00

36 lines
763 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "target/types",
"stripInternal": true,
"types": ["jest", "node"]
},
"include": [
"**/*.ts",
"**/*.js",
"src/jest/jest_flags.json",
],
"exclude": [
"types/**/*",
"**/__fixtures__/**/*",
"target/**/*",
],
"kbn_references": [
"@kbn/dev-utils",
"@kbn/std",
"@kbn/tooling-log",
"@kbn/get-repo-files",
"@kbn/peggy",
"@kbn/dev-cli-runner",
"@kbn/dev-cli-errors",
"@kbn/ci-stats-reporter",
"@kbn/repo-info",
"@kbn/es",
"@kbn/dev-proc-runner",
"@kbn/jest-serializers",
"@kbn/stdio-dev-helpers",
"@kbn/babel-register",
"@kbn/repo-packages",
"@kbn/core-saved-objects-api-server",
]
}