mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Migrate indexPatternManagement to TS project ref (#89759)
This commit is contained in:
parent
2f54078aed
commit
5c96da1e20
6 changed files with 31 additions and 3 deletions
22
src/plugins/index_pattern_management/tsconfig.json
Normal file
22
src/plugins/index_pattern_management/tsconfig.json
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"extends": "../../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"composite": true,
|
||||
"outDir": "./target/types",
|
||||
"emitDeclarationOnly": true,
|
||||
"declaration": true,
|
||||
"declarationMap": true
|
||||
},
|
||||
"include": [
|
||||
"public/**/*",
|
||||
"server/**/*",
|
||||
],
|
||||
"references": [
|
||||
{ "path": "../../core/tsconfig.json" },
|
||||
{ "path": "../data/tsconfig.json" },
|
||||
{ "path": "../management/tsconfig.json" },
|
||||
{ "path": "../url_forwarding/tsconfig.json" },
|
||||
{ "path": "../kibana_react/tsconfig.json" },
|
||||
{ "path": "../kibana_utils/tsconfig.json" },
|
||||
]
|
||||
}
|
|
@ -39,6 +39,7 @@
|
|||
{ "path": "../src/plugins/ui_actions/tsconfig.json" },
|
||||
{ "path": "../src/plugins/url_forwarding/tsconfig.json" },
|
||||
{ "path": "../src/plugins/usage_collection/tsconfig.json" },
|
||||
{ "path": "../src/plugins/index_pattern_management/tsconfig.json" },
|
||||
{ "path": "../src/plugins/legacy_export/tsconfig.json" }
|
||||
]
|
||||
}
|
||||
|
|
|
@ -59,6 +59,7 @@
|
|||
"src/plugins/vis_type_xy/**/*",
|
||||
"src/plugins/visualizations/**/*",
|
||||
"src/plugins/visualize/**/*",
|
||||
"src/plugins/index_pattern_management/**/*",
|
||||
// In the build we actually exclude **/public/**/* from this config so that
|
||||
// we can run the TSC on both this and the .browser version of this config
|
||||
// file, but if we did it during development IDEs would not be able to find
|
||||
|
@ -117,5 +118,6 @@
|
|||
{ "path": "./src/plugins/vis_type_xy/tsconfig.json" },
|
||||
{ "path": "./src/plugins/visualizations/tsconfig.json" },
|
||||
{ "path": "./src/plugins/visualize/tsconfig.json" },
|
||||
{ "path": "./src/plugins/index_pattern_management/tsconfig.json" },
|
||||
]
|
||||
}
|
||||
|
|
|
@ -52,6 +52,7 @@
|
|||
{ "path": "./src/plugins/vis_type_vega/tsconfig.json" },
|
||||
{ "path": "./src/plugins/vis_type_xy/tsconfig.json" },
|
||||
{ "path": "./src/plugins/visualizations/tsconfig.json" },
|
||||
{ "path": "./src/plugins/visualize/tsconfig.json" }
|
||||
{ "path": "./src/plugins/visualize/tsconfig.json" },
|
||||
{ "path": "./src/plugins/index_pattern_management/tsconfig.json" },
|
||||
]
|
||||
}
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
{ "path": "../../src/plugins/usage_collection/tsconfig.json" },
|
||||
{ "path": "../../src/plugins/ui_actions/tsconfig.json" },
|
||||
{ "path": "../../src/plugins/url_forwarding/tsconfig.json" },
|
||||
{ "path": "../../src/plugins/index_pattern_management/tsconfig.json" },
|
||||
|
||||
{ "path": "../plugins/actions/tsconfig.json" },
|
||||
{ "path": "../plugins/alerts/tsconfig.json" },
|
||||
|
|
|
@ -84,8 +84,9 @@
|
|||
{ "path": "../src/plugins/ui_actions/tsconfig.json" },
|
||||
{ "path": "../src/plugins/url_forwarding/tsconfig.json" },
|
||||
{ "path": "../src/plugins/usage_collection/tsconfig.json" },
|
||||
{ "path": "./plugins/actions/tsconfig.json" },
|
||||
{ "path": "./plugins/alerts/tsconfig.json" },
|
||||
{ "path": "../src/plugins/index_pattern_management/tsconfig.json" },
|
||||
{ "path": "./plugins/actions/tsconfig.json"},
|
||||
{ "path": "./plugins/alerts/tsconfig.json"},
|
||||
{ "path": "./plugins/beats_management/tsconfig.json" },
|
||||
{ "path": "./plugins/canvas/tsconfig.json" },
|
||||
{ "path": "./plugins/cloud/tsconfig.json" },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue