kibana/test/tsconfig.json
Stratoula Kalafateli 125c8951e5
[ES|QL] Runs the _query requests with the version (#180248)
## Summary

Due to https://github.com/elastic/kibana/issues/179641

ES is going to add a mandatory field `version`. (it is optional for now
but they want to make it required for the GA).

The version will change in backwards incompatible changes:
- syntax changes
- functions / commands output changes

This is the first PR which is adding the first version manually for now.
In https://github.com/elastic/kibana/issues/179641 we are exploring how
to deal with versioning in kibana. We are going to offer a solution in
8.15. For now we are adding the version hardcoded (otherwise when the
field is marked required kibana _query requests will fail.

👮‍♀️ If you are aware of any other application which uses the _query api
and is not updated in this PR please let me know

---------

Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
2024-04-09 17:39:08 +02:00

78 lines
2.3 KiB
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "target/types",
"types": [
"node",
"cheerio",
"@emotion/react/types/css-prop",
"@kbn/ambient-ui-types",
"@kbn/ambient-ftr-types"
]
},
"include": [
"**/*",
"../typings/**/*",
"../packages/kbn-test/types/ftr_globals/**/*",
"api_integration/apis/logstash/pipeline/fixtures/*.json",
"api_integration/apis/logstash/pipelines/fixtures/*.json",
"api_integration/apis/telemetry/fixtures/*.json",
"api_integration/apis/telemetry/fixtures/*.json"
, "../x-pack/test_serverless/functional/test_suites/common/saved_objects_management/export_transform copy.ts" ],
"exclude": ["target/**/*", "*/plugins/**/*", "plugins/**/*"],
"kbn_references": [
"@kbn/core",
{ "path": "../src/setup_node_env/tsconfig.json" },
"@kbn/bfetch-plugin",
"@kbn/dashboard-plugin",
"@kbn/expressions-plugin",
"@kbn/saved-objects-management-plugin",
"@kbn/telemetry-plugin",
"@kbn/usage-collection-plugin",
"@kbn/visualizations-plugin",
"@kbn/analytics-ftr-helpers-plugin",
"@kbn/analytics-plugin-a-plugin",
"@kbn/core-app-status-plugin",
"@kbn/core-provider-plugin",
"@kbn/test",
"@kbn/repo-info",
"@kbn/utils",
"@kbn/expect",
"@kbn/data-plugin",
"@kbn/ftr-common-functional-services",
"@kbn/tooling-log",
"@kbn/std",
"@kbn/test-subj-selector",
"@kbn/rison",
"@kbn/controls-plugin",
"@kbn/field-formats-plugin",
"@kbn/axe-config",
"@kbn/dev-cli-runner",
"@kbn/dev-cli-errors",
"@kbn/data-view-field-editor-plugin",
"@kbn/data-views-plugin",
"@kbn/guided-onboarding-plugin",
"@kbn/guided-onboarding",
"@kbn/config-schema",
"@kbn/analytics",
"@kbn/field-types",
"@kbn/ftr-screenshot-filename",
"@kbn/es-archiver",
"@kbn/core-application-browser",
"@kbn/screenshot-mode-plugin",
"@kbn/dev-utils",
"@kbn/analytics-client",
"@kbn/utility-types",
"@kbn/dev-proc-runner",
"@kbn/enterprise-search-plugin",
"@kbn/core-saved-objects-server",
"@kbn/discover-plugin",
"@kbn/core-http-common",
"@kbn/event-annotation-plugin",
"@kbn/event-annotation-common",
"@kbn/links-plugin",
"@kbn/ftr-common-functional-ui-services",
"@kbn/monaco",
"@kbn/esql-utils",
]
}