Skip to content

Commit

Permalink
global search to ts refs (#79446) (#79462)
Browse files Browse the repository at this point in the history
  • Loading branch information
mshustov authored Oct 5, 2020
1 parent a846cf7 commit 40bae24
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 4 deletions.
21 changes: 21 additions & 0 deletions x-pack/plugins/global_search/tsconfig.json
Original file line number Diff line number Diff line change
@@ -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" }
]
}

3 changes: 2 additions & 1 deletion x-pack/test/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
]
}
6 changes: 4 additions & 2 deletions x-pack/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"plugins/security_solution/cypress/**/*",
"plugins/apm/e2e/cypress/**/*",
"plugins/apm/scripts/**/*",
"plugins/licensing/**/*"
"plugins/licensing/**/*",
"plugins/global_search/**/*",
],
"compilerOptions": {
"paths": {
Expand All @@ -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" },
]
}
3 changes: 2 additions & 1 deletion x-pack/tsconfig.refs.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"include": [],
"references": [
{ "path": "./plugins/licensing/tsconfig.json" }
{ "path": "./plugins/licensing/tsconfig.json" },
{ "path": "./plugins/global_search/tsconfig.json" },
]
}

0 comments on commit 40bae24

Please sign in to comment.