kibana/x-pack/plugins/fleet/tsconfig.json
Kibana Machine a2630f0958
[8.12] [Fleet] Fix get file handler for bundled package (#172182) (#173058) (#173912)
# Backport

This will backport the following commits from `main` to `8.12`:
- [[Fleet] Fix get file handler for bundled package (#172182)
(#173058)](https://github.com/elastic/kibana/pull/173058)

<!--- Backport version: 8.9.7 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sqren/backport)

<!--BACKPORT [{"author":{"name":"Nicolas
Chaulet","email":"nicolas.chaulet@elastic.co"},"sourceCommit":{"committedDate":"2023-12-12T16:05:46Z","message":"[Fleet]
Fix get file handler for bundled package (#172182)
(#173058)","sha":"fa3b6f4c9da88e6ddbd1fae7c502d00353c55134","branchLabelMapping":{"^v8.13.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","Team:Fleet","backport:prev-minor","v8.13.0"],"number":173058,"url":"https://github.com/elastic/kibana/pull/173058","mergeCommit":{"message":"[Fleet]
Fix get file handler for bundled package (#172182)
(#173058)","sha":"fa3b6f4c9da88e6ddbd1fae7c502d00353c55134"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v8.13.0","labelRegex":"^v8.13.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/173058","number":173058,"mergeCommit":{"message":"[Fleet]
Fix get file handler for bundled package (#172182)
(#173058)","sha":"fa3b6f4c9da88e6ddbd1fae7c502d00353c55134"}}]}]
BACKPORT-->

Co-authored-by: Nicolas Chaulet <nicolas.chaulet@elastic.co>
2023-12-22 05:28:34 -07:00

107 lines
2.9 KiB
JSON

{
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"outDir": "target/types",
},
"exclude": [
"cypress.config.ts",
"target/**/*",
],
"include": [
// add all the folders containing files to be compiled
".storybook/**/*",
"common/**/*",
"public/**/*",
"server/**/*",
"server/**/*.json",
"scripts/**/*",
"package.json",
"cypress.config.ts",
"../../../typings/**/*"
],
"kbn_references": [
"@kbn/core",
{ "path": "../../../src/setup_node_env/tsconfig.json" },
// add references to other TypeScript projects the plugin depends on
// requiredPlugins from ./kibana.json
"@kbn/licensing-plugin",
"@kbn/data-plugin",
"@kbn/encrypted-saved-objects-plugin",
"@kbn/guided-onboarding-plugin",
"@kbn/files-plugin",
// optionalPlugins from ./kibana.json
"@kbn/security-plugin",
"@kbn/features-plugin",
"@kbn/cloud-plugin",
"@kbn/usage-collection-plugin",
"@kbn/home-plugin",
// requiredBundles from ./kibana.json
"@kbn/kibana-react-plugin",
"@kbn/es-ui-shared-plugin",
"@kbn/logs-shared-plugin",
"@kbn/kibana-utils-plugin",
"@kbn/unified-search-plugin",
"@kbn/storybook",
"@kbn/share-plugin",
"@kbn/i18n-react",
"@kbn/custom-integrations-plugin",
// packages
"@kbn/core-application-common",
"@kbn/core-capabilities-common",
"@kbn/i18n",
"@kbn/std",
"@kbn/es-types",
"@kbn/navigation-plugin",
"@kbn/spaces-plugin",
"@kbn/discover-plugin",
"@kbn/data-views-plugin",
"@kbn/global-search-plugin",
"@kbn/utility-types",
"@kbn/utility-types-jest",
"@kbn/es-query",
"@kbn/ui-theme",
"@kbn/rison",
"@kbn/config-schema",
"@kbn/telemetry-plugin",
"@kbn/task-manager-plugin",
"@kbn/saved-objects-tagging-plugin",
"@kbn/core-saved-objects-server",
"@kbn/core-elasticsearch-server",
"@kbn/es-errors",
"@kbn/core-test-helpers-kbn-server",
"@kbn/repo-info",
"@kbn/logging-mocks",
"@kbn/core-elasticsearch-client-server-mocks",
"@kbn/test",
"@kbn/stdio-dev-helpers",
"@kbn/tooling-log",
"@kbn/apm-utils",
"@kbn/core-saved-objects-common",
"@kbn/core-http-server",
"@kbn/core-elasticsearch-server-mocks",
"@kbn/core-saved-objects-api-server-mocks",
"@kbn/core-saved-objects-api-server",
"@kbn/logging",
"@kbn/analytics-client",
"@kbn/core-logging-server-mocks",
"@kbn/ml-is-populated-object",
"@kbn/utils",
"@kbn/core-http-request-handler-context-server",
"@kbn/shared-ux-router",
"@kbn/shared-ux-link-redirect-app",
"@kbn/core-http-router-server-internal",
"@kbn/safer-lodash-set",
"@kbn/shared-ux-file-types",
"@kbn/core-application-browser",
"@kbn/core-saved-objects-base-server-internal",
"@kbn/core-http-common",
"@kbn/dashboard-plugin",
"@kbn/cloud",
"@kbn/config",
"@kbn/core-http-server-mocks",
]
}