kibana/x-pack/platform/test/tsconfig.json
Dzmitry Lemechko 58b8c7aec0
[ska] [xpack] relocate platform tests (#225223)
## Summary

Part of https://github.com/elastic/kibana-team/issues/1503

This PR is mostly about moving platform tests from x-pack/test/

Before:

```
x-pack/test/
     | - ftr_apis/
     | - load/
     | - plugin_api_perf/
     | - fleet_packages/
     | - fleet_tasks/
     | - scalability/
     | - task_manager_claimer_update_by_query/
```

After: 
```
x-pack/platform/test/
     | - ftr_apis/
     | - load/
     | - plugin_api_perf/
     | - fleet_packages/
     | - fleet_tasks/
     | - scalability/
     | - task_manager_claimer_update_by_query/

---------

Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
2025-06-25 17:01:04 +02:00

103 lines
3.1 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"
],
// 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": [
"index.d.ts",
"**/*",
"../../../typings/**/*",
"../../../src/platform/packages/shared/kbn-test/types/ftr_globals/**/*",
"../../*.json",
"./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",
],
"exclude": [
"target/**/*",
"*/plugins/**/*",
"*/packages/**/*",
"*/*/packages/**/*"
],
"kbn_references": [
"@kbn/test-suites-src",
"@kbn/telemetry-collection-manager-plugin",
"@kbn/features-plugin",
"@kbn/test",
"@kbn/expect",
"@kbn/core-http-common",
"@kbn/scout-info",
"@kbn/data-plugin",
"@kbn/dev-utils",
"@kbn/security-api-integration-helpers",
"@kbn/security-plugin",
"@kbn/telemetry-plugin",
"@kbn/maps-vector-tile-utils",
"@kbn/data-views-plugin",
"@kbn/core-saved-objects-server",
"@kbn/security-plugin-types-common",
"@kbn/telemetry-collection-xpack-plugin",
"@kbn/telemetry-tools",
"@kbn/ftr-common-functional-services",
"@kbn/upgrade-assistant-plugin",
"@kbn/search-types",
"@kbn/spaces-plugin",
"@kbn/transform-plugin",
"@kbn/config-schema",
"@kbn/ml-plugin",
"@kbn/ml-data-frame-analytics-utils",
"@kbn/fleet-plugin",
"@kbn/aiops-log-rate-analysis",
"@kbn/aiops-test-utils",
"@kbn/ml-agg-utils",
"@kbn/share-plugin",
"@kbn/tooling-log",
"@kbn/cross-cluster-replication-plugin",
"@kbn/index-management-plugin",
"@kbn/snapshot-restore-plugin",
"@kbn/monitoring-plugin",
"@kbn/automatic-import-plugin",
"@kbn/core-saved-objects-base-server-internal",
"@kbn/utils",
"@kbn/core",
"@kbn/entities-schema",
"@kbn/data-forge",
"@kbn/entityManager-plugin",
"@kbn/ml-is-populated-object",
"@kbn/ml-anomaly-utils",
"@kbn/encrypted-saved-objects-plugin",
"@kbn/event-log-plugin",
"@kbn/task-manager-plugin",
"@kbn/alerting-state-types",
"@kbn/std",
"@kbn/actions-simulators-plugin",
"@kbn/stack-connectors-plugin",
"@kbn/alerting-api-integration-helpers",
"@kbn/alerting-plugin",
"@kbn/rule-data-utils",
"@kbn/actions-plugin",
"@kbn/core-saved-objects-api-server",
"@kbn/es-archiver",
"@kbn/es-query",
"@kbn/stack-alerts-plugin",
"@kbn/triggers-actions-ui-plugin",
"@kbn/alerts-as-data-utils",
"@kbn/dev-proc-runner",
"@kbn/repo-info",
"@kbn/dev-cli-errors",
"@kbn/journeys",
]
}