Skip to content

Commit 40bae24

Browse files
authored
global search to ts refs (#79446) (#79462)
1 parent a846cf7 commit 40bae24

File tree

4 files changed

+29
-4
lines changed

4 files changed

+29
-4
lines changed
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"extends": "../../../tsconfig.base.json",
3+
"compilerOptions": {
4+
"composite": true,
5+
"outDir": "./target/types",
6+
"emitDeclarationOnly": true,
7+
"declaration": true,
8+
"declarationMap": true
9+
},
10+
"include": [
11+
"public/**/*",
12+
"server/**/*",
13+
"common/**/*",
14+
"../../../typings/**/*"
15+
],
16+
"references": [
17+
{ "path": "../../../src/core/tsconfig.json" },
18+
{ "path": "../licensing/tsconfig.json" }
19+
]
20+
}
21+

x-pack/test/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
{ "path": "../../src/core/tsconfig.json" },
2121
{ "path": "../../src/plugins/kibana_utils/tsconfig.json" },
2222
{ "path": "../../src/plugins/kibana_react/tsconfig.json" },
23-
{ "path": "../plugins/licensing/tsconfig.json" }
23+
{ "path": "../plugins/licensing/tsconfig.json" },
24+
{ "path": "../plugins/global_search/tsconfig.json" },
2425
]
2526
}

x-pack/tsconfig.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"plugins/security_solution/cypress/**/*",
1313
"plugins/apm/e2e/cypress/**/*",
1414
"plugins/apm/scripts/**/*",
15-
"plugins/licensing/**/*"
15+
"plugins/licensing/**/*",
16+
"plugins/global_search/**/*",
1617
],
1718
"compilerOptions": {
1819
"paths": {
@@ -28,6 +29,7 @@
2829
{ "path": "../src/core/tsconfig.json" },
2930
{ "path": "../src/plugins/kibana_utils/tsconfig.json" },
3031
{ "path": "../src/plugins/kibana_react/tsconfig.json" },
31-
{ "path": "./plugins/licensing/tsconfig.json" }
32+
{ "path": "./plugins/licensing/tsconfig.json" },
33+
{ "path": "./plugins/global_search/tsconfig.json" },
3234
]
3335
}

x-pack/tsconfig.refs.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"include": [],
33
"references": [
4-
{ "path": "./plugins/licensing/tsconfig.json" }
4+
{ "path": "./plugins/licensing/tsconfig.json" },
5+
{ "path": "./plugins/global_search/tsconfig.json" },
56
]
67
}

0 commit comments

Comments
 (0)