mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[DX] Management to TS projects (#87660)
* Adds management to tsconfig refs * removes preemptive script fix
This commit is contained in:
parent
8a21b64007
commit
0549f94332
6 changed files with 29 additions and 1 deletions
22
src/plugins/management/tsconfig.json
Normal file
22
src/plugins/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": [
|
||||
"common/**/*",
|
||||
"public/**/*",
|
||||
"server/**/*",
|
||||
"../../../typings/**/*"
|
||||
],
|
||||
"references": [
|
||||
{ "path": "../../core/tsconfig.json" },
|
||||
{ "path": "../home/tsconfig.json"},
|
||||
{ "path": "../kibana_react/tsconfig.json"},
|
||||
{ "path": "../kibana_utils/tsconfig.json"}
|
||||
]
|
||||
}
|
|
@ -8,6 +8,7 @@
|
|||
"exclude": ["plugin_functional/plugins/**/*", "interpreter_functional/plugins/**/*"],
|
||||
"references": [
|
||||
{ "path": "../src/core/tsconfig.json" },
|
||||
{ "path": "../src/plugins/management/tsconfig.json" },
|
||||
{ "path": "../src/plugins/bfetch/tsconfig.json" },
|
||||
{ "path": "../src/plugins/embeddable/tsconfig.json" },
|
||||
{ "path": "../src/plugins/expressions/tsconfig.json" },
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
"exclude": [
|
||||
"src/**/__fixtures__/**/*",
|
||||
"src/core/**/*",
|
||||
"src/plugins/management/**/*",
|
||||
"src/plugins/apm_oss/**/*",
|
||||
"src/plugins/bfetch/**/*",
|
||||
"src/plugins/data/**/*",
|
||||
|
@ -38,6 +39,7 @@
|
|||
],
|
||||
"references": [
|
||||
{ "path": "./src/core/tsconfig.json" },
|
||||
{ "path": "./src/plugins/management/tsconfig.json"},
|
||||
{ "path": "./src/plugins/apm_oss/tsconfig.json" },
|
||||
{ "path": "./src/plugins/bfetch/tsconfig.json" },
|
||||
{ "path": "./src/plugins/data/tsconfig.json" },
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
{ "path": "./src/plugins/telemetry_collection_manager/tsconfig.json" },
|
||||
{ "path": "./src/plugins/ui_actions/tsconfig.json" },
|
||||
{ "path": "./src/plugins/url_forwarding/tsconfig.json" },
|
||||
{ "path": "./src/plugins/usage_collection/tsconfig.json" }
|
||||
{ "path": "./src/plugins/usage_collection/tsconfig.json" },
|
||||
{ "path": "./src/plugins/management/tsconfig.json" },
|
||||
]
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
"exclude": ["../typings/jest.d.ts"],
|
||||
"references": [
|
||||
{ "path": "../../src/core/tsconfig.json" },
|
||||
{ "path": "../../src/plugins/management/tsconfig.json" },
|
||||
{ "path": "../../src/plugins/bfetch/tsconfig.json" },
|
||||
{ "path": "../../src/plugins/data/tsconfig.json" },
|
||||
{ "path": "../../src/plugins/embeddable/tsconfig.json" },
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
},
|
||||
"references": [
|
||||
{ "path": "../src/core/tsconfig.json" },
|
||||
{ "path": "../src/plugins/management/tsconfig.json" },
|
||||
{ "path": "../src/plugins/bfetch/tsconfig.json" },
|
||||
{ "path": "../src/plugins/data/tsconfig.json" },
|
||||
{ "path": "../src/plugins/dev_tools/tsconfig.json" },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue