-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Asset Management] Migrate Osquery plugin to TS project references (#…
- Loading branch information
1 parent
b09b01f
commit 9d8296e
Showing
5 changed files
with
39 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"compilerOptions": { | ||
"composite": true, | ||
"outDir": "./target/types", | ||
"emitDeclarationOnly": true, | ||
"declaration": true, | ||
"declarationMap": true | ||
}, | ||
"include": [ | ||
// add all the folders contains files to be compiled | ||
"common/**/*", | ||
"public/**/*", | ||
"server/**/*" | ||
], | ||
"references": [ | ||
{ "path": "../../../src/core/tsconfig.json" }, | ||
// add references to other TypeScript projects the plugin depends on | ||
|
||
// requiredPlugins from ./kibana.json | ||
{ "path": "../../../src/plugins/data/tsconfig.json" }, | ||
{ "path": "../../../src/plugins/navigation/tsconfig.json" }, | ||
{ "path": "../data_enhanced/tsconfig.json" }, | ||
{ "path": "../fleet/tsconfig.json" }, | ||
|
||
// optionalPlugins from ./kibana.json | ||
{ "path": "../../../src/plugins/home/tsconfig.json" }, | ||
|
||
// requiredBundles from ./kibana.json | ||
{ "path": "../../../src/plugins/es_ui_shared/tsconfig.json" }, | ||
{ "path": "../../../src/plugins/kibana_react/tsconfig.json" }, | ||
{ "path": "../../../src/plugins/kibana_utils/tsconfig.json" }, | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters