mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 10:40:07 -04:00
## Summary These examples are outdated and don't show recent embeddable best practices. They also use client-side saved object client and block making `SavedObjectFinder` backward compatible https://github.com/elastic/kibana/pull/162904 as the `foobar` saved objects need to be added to content management. We decided that it is better to clean them up, as fixing them is not a small effort and it is not worth it on this point as a large embeddable refactor is coming.
25 lines
464 B
JSON
25 lines
464 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "target/types"
|
|
},
|
|
"include": [
|
|
"index.ts",
|
|
"common/**/*.ts",
|
|
"public/**/*.ts",
|
|
"public/**/*.tsx",
|
|
"server/**/*.ts",
|
|
"../../typings/**/*"
|
|
],
|
|
"exclude": [
|
|
"target/**/*",
|
|
],
|
|
"kbn_references": [
|
|
"@kbn/core",
|
|
"@kbn/kibana-utils-plugin",
|
|
"@kbn/ui-actions-plugin",
|
|
"@kbn/embeddable-plugin",
|
|
"@kbn/i18n",
|
|
"@kbn/es-query",
|
|
]
|
|
}
|