kibana/x-pack/test/tsconfig.json
Yulia Čech 13fd4f0847
[Guided onboarding] Change the API prefix to /internal (#155643)
## Summary

Fixes https://github.com/elastic/kibana/issues/155611
This PR changes the API prefix to indicate that the endpoints are
intended for internal use only. The plugin has been setup incorrectly
initially with the prefix `/api` that is intended for a public API.
There should not be any changes to the UI or functionality of the
plugin.


### Release Note
Fixed the guided onboarding API prefix to indicate that it's intended
for internal use

---------

Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
2023-04-25 11:21:20 -06:00

128 lines
4 KiB
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "target/types",
"types": ["node", "@kbn/ambient-ftr-types"],
// there is still a decent amount of JS in this plugin and we are taking
// advantage of the fact that TS doesn't know the types of that code and
// gives us `any`. Once that code is converted to .ts we can remove this
// and allow TS to infer types from any JS file imported.
"allowJs": false
},
"include": [
"**/*",
"./api_integration/apis/logstash/pipeline/fixtures/*.json",
"./api_integration/apis/logstash/pipelines/fixtures/*.json",
"./api_integration/apis/telemetry/fixtures/*.json",
"./monitoring_api_integration/fixtures/**/*.json",
"../../typings/**/*",
"../../packages/kbn-test/types/ftr_globals/**/*",
],
"exclude": [
"target/**/*",
"*/plugins/**/*",
"*/packages/**/*",
"*/*/packages/**/*",
],
"kbn_references": [
{ "path": "../../test/tsconfig.json" },
"@kbn/core",
"@kbn/data-plugin",
"@kbn/kibana-usage-collection-plugin",
"@kbn/share-plugin",
"@kbn/telemetry-collection-manager-plugin",
"@kbn/telemetry-plugin",
"@kbn/actions-plugin",
"@kbn/alerting-plugin",
"@kbn/apm-plugin",
"@kbn/cases-plugin",
"@kbn/fleet-plugin",
"@kbn/global-search-plugin",
"@kbn/features-plugin",
"@kbn/encrypted-saved-objects-plugin",
"@kbn/event-log-plugin",
"@kbn/features-plugin",
"@kbn/global-search-plugin",
"@kbn/index-management-plugin",
"@kbn/infra-plugin",
"@kbn/licensing-plugin",
"@kbn/lists-plugin",
"@kbn/ml-plugin",
"@kbn/monitoring-plugin",
"@kbn/observability-plugin",
"@kbn/security-plugin",
"@kbn/security-solution-plugin",
"@kbn/snapshot-restore-plugin",
"@kbn/spaces-plugin",
"@kbn/task-manager-plugin",
"@kbn/telemetry-collection-xpack-plugin",
"@kbn/timelines-plugin",
"@kbn/transform-plugin",
"@kbn/triggers-actions-ui-plugin",
"@kbn/upgrade-assistant-plugin",
"@kbn/remote-clusters-plugin",
"@kbn/cross-cluster-replication-plugin",
"@kbn/synthetics-plugin",
"@kbn/global-search-test-plugin",
"@kbn/test",
"@kbn/repo-info",
"@kbn/tooling-log",
"@kbn/dev-utils",
"@kbn/dev-proc-runner",
"@kbn/ftr-common-functional-services",
"@kbn/securitysolution-io-ts-list-types",
"@kbn/securitysolution-list-constants",
"@kbn/securitysolution-es-utils",
"@kbn/expect",
"@kbn/dev-cli-errors",
"@kbn/ci-stats-reporter",
"@kbn/std",
"@kbn/apm-synthtrace",
"@kbn/core-saved-objects-base-server-internal",
"@kbn/rule-data-utils",
"@kbn/maps-plugin",
"@kbn/test-subj-selector",
"@kbn/rison",
"@kbn/reporting-plugin",
"@kbn/aiops-plugin",
"@kbn/ml-agg-utils",
"@kbn/logging",
"@kbn/utility-types",
"@kbn/data-views-plugin",
"@kbn/datemath",
"@kbn/safer-lodash-set",
"@kbn/securitysolution-rules",
"@kbn/es-archiver",
"@kbn/config-schema",
"@kbn/kubernetes-security-plugin",
"@kbn/es-query",
"@kbn/session-view-plugin",
"@kbn/ml-is-populated-object",
"@kbn/ml-string-hash",
"@kbn/data-visualizer-plugin",
"@kbn/visualizations-plugin",
"@kbn/rule-registry-plugin",
"@kbn/controls-plugin",
"@kbn/core-saved-objects-server",
"@kbn/core-provider-plugin",
"@kbn/user-profile-components",
"@kbn/apm-synthtrace-client",
"@kbn/utils",
"@kbn/journeys",
"@kbn/stdio-dev-helpers",
"@kbn/alerting-api-integration-helpers",
"@kbn/securitysolution-ecs",
"@kbn/cloud-security-posture-plugin",
"@kbn/cloud-integration-saml-provider-plugin",
"@kbn/security-api-integration-helpers",
"@kbn/alerts-as-data-utils",
"@kbn/discover-plugin",
"@kbn/files-plugin",
"@kbn/shared-ux-file-types",
"@kbn/securitysolution-io-ts-alerting-types",
"@kbn/alerting-state-types",
"@kbn/assetManager-plugin",
"@kbn/guided-onboarding-plugin",
"@kbn/field-formats-plugin",
]
}