mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
global search to ts refs (#79446)
This commit is contained in:
parent
a8b1b9e281
commit
5ca87308ea
4 changed files with 29 additions and 4 deletions
21
x-pack/plugins/global_search/tsconfig.json
Normal file
21
x-pack/plugins/global_search/tsconfig.json
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"extends": "../../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"composite": true,
|
||||
"outDir": "./target/types",
|
||||
"emitDeclarationOnly": true,
|
||||
"declaration": true,
|
||||
"declarationMap": true
|
||||
},
|
||||
"include": [
|
||||
"public/**/*",
|
||||
"server/**/*",
|
||||
"common/**/*",
|
||||
"../../../typings/**/*"
|
||||
],
|
||||
"references": [
|
||||
{ "path": "../../../src/core/tsconfig.json" },
|
||||
{ "path": "../licensing/tsconfig.json" }
|
||||
]
|
||||
}
|
||||
|
|
@ -20,6 +20,7 @@
|
|||
{ "path": "../../src/core/tsconfig.json" },
|
||||
{ "path": "../../src/plugins/kibana_utils/tsconfig.json" },
|
||||
{ "path": "../../src/plugins/kibana_react/tsconfig.json" },
|
||||
{ "path": "../plugins/licensing/tsconfig.json" }
|
||||
{ "path": "../plugins/licensing/tsconfig.json" },
|
||||
{ "path": "../plugins/global_search/tsconfig.json" },
|
||||
]
|
||||
}
|
||||
|
|
|
@ -12,7 +12,8 @@
|
|||
"plugins/security_solution/cypress/**/*",
|
||||
"plugins/apm/e2e/cypress/**/*",
|
||||
"plugins/apm/scripts/**/*",
|
||||
"plugins/licensing/**/*"
|
||||
"plugins/licensing/**/*",
|
||||
"plugins/global_search/**/*",
|
||||
],
|
||||
"compilerOptions": {
|
||||
"paths": {
|
||||
|
@ -28,6 +29,7 @@
|
|||
{ "path": "../src/core/tsconfig.json" },
|
||||
{ "path": "../src/plugins/kibana_utils/tsconfig.json" },
|
||||
{ "path": "../src/plugins/kibana_react/tsconfig.json" },
|
||||
{ "path": "./plugins/licensing/tsconfig.json" }
|
||||
{ "path": "./plugins/licensing/tsconfig.json" },
|
||||
{ "path": "./plugins/global_search/tsconfig.json" },
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"include": [],
|
||||
"references": [
|
||||
{ "path": "./plugins/licensing/tsconfig.json" }
|
||||
{ "path": "./plugins/licensing/tsconfig.json" },
|
||||
{ "path": "./plugins/global_search/tsconfig.json" },
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue