mirror of
https://github.com/elastic/kibana.git
synced 2025-04-22 17:04:01 -04:00
* [ML] Using data views service for loading data views * removing more saved object client uses * removing IIndexPattern use * removing IndexPattern use * removing more depricated types * fixing teste * fixing index pattern loading * tiny refactor * fixing rollup index test * changes based on review * adding size to find calls Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
36 lines
1.2 KiB
JSON
36 lines
1.2 KiB
JSON
{
|
|
"extends": "../../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./target/types",
|
|
"emitDeclarationOnly": true,
|
|
"declaration": true,
|
|
"declarationMap": true
|
|
},
|
|
"include": [
|
|
"common/**/*",
|
|
"public/**/*",
|
|
"server/**/*",
|
|
"__mocks__/**/*",
|
|
"shared_imports.ts",
|
|
"../../../typings/**/*",
|
|
// have to declare *.json explicitly due to https://github.com/microsoft/TypeScript/issues/25636
|
|
"public/**/*.json",
|
|
"server/**/*.json"
|
|
],
|
|
"references": [
|
|
{ "path": "../../../src/core/tsconfig.json" },
|
|
{ "path": "../../../src/plugins/embeddable/tsconfig.json" },
|
|
{ "path": "../../../src/plugins/index_pattern_management/tsconfig.json" },
|
|
{ "path": "../../../src/plugins/data_views/tsconfig.json" },
|
|
{ "path": "../cloud/tsconfig.json" },
|
|
{ "path": "../features/tsconfig.json" },
|
|
{ "path": "../data_visualizer/tsconfig.json"},
|
|
{ "path": "../license_management/tsconfig.json" },
|
|
{ "path": "../licensing/tsconfig.json" },
|
|
{ "path": "../maps/tsconfig.json" },
|
|
{ "path": "../security/tsconfig.json" },
|
|
{ "path": "../spaces/tsconfig.json" },
|
|
{ "path": "../alerting/tsconfig.json" },
|
|
{ "path": "../triggers_actions_ui/tsconfig.json" }
|
|
]
|
|
}
|