kibana/test/tsconfig.json
Gerard Soldevila 6a7c904f92
SKA: Relocate "platform" packages that remain on /packages (#208704)
## Summary

The `/packages` folder at the root of the Kibana repository used to
contain a lot of packages.
In the context of SKA, they have been gradually moved to various
locations:
* `src/platform/packages`
* `x-pack/platform/packages`
* `src/core/packages`

Currently, only `devOnly: true` packages are left in this folder. This
comprises libraries for CLI scripts as well as testing utilities.

With this PR, we are moving ~half of these packages under
`src/platform/packages/(private|shared)/`.
In particular, we are moving those packages that are being used from
platform and/or solutions.

Since they are `"devOnly": true`, this means they are ONLY used from
tests, cypress tests, storybook configs, ./scripts/ folders inside some
modules, or other non-prod-time logic. Nonetheless, they are effectively
referenced from platform and/or solutions code, hence I decided they
should be placed under `platform` folders.

---------

Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
2025-02-24 11:03:30 +00:00

81 lines
2.5 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/**/*",
"../src/platform/packages/shared/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/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/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/utility-types",
"@kbn/dev-proc-runner",
"@kbn/enterprise-search-plugin",
"@kbn/core-saved-objects-server",
"@kbn/core-http-common",
"@kbn/event-annotation-plugin",
"@kbn/event-annotation-common",
"@kbn/links-plugin",
"@kbn/ftr-common-functional-ui-services",
"@kbn/console-plugin",
"@kbn/core-chrome-browser",
"@kbn/default-nav-ml",
"@kbn/default-nav-analytics",
"@kbn/default-nav-management",
"@kbn/default-nav-devtools",
"@kbn/core-saved-objects-import-export-server-internal",
"@kbn/core-deprecations-common",
"@kbn/data-grid-in-table-search",
"@kbn/scout-info",
]
}