-
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.
[Alerting] Migrate Actions, Alerts, Stack Alerts and TriggersActionsU…
…I plugins to TS project references (#88556) * [Alerting] Migrate Actions plugin to TS project references * alerts plugin ts migration * triggers_actions_ui plugin ts migration * fixed build * fixed build
- Loading branch information
1 parent
c9002a2
commit 8b1a228
Showing
10 changed files
with
133 additions
and
7 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,27 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"composite": true, | ||
"outDir": "./target/types", | ||
"emitDeclarationOnly": true, | ||
"declaration": true, | ||
"declarationMap": true | ||
}, | ||
"include": [ | ||
"server/**/*", | ||
// have to declare *.json explicitly due to https://github.com/microsoft/TypeScript/issues/25636 | ||
"server/**/*.json", | ||
"common/*" | ||
], | ||
"references": [ | ||
{ "path": "../../../src/core/tsconfig.json" }, | ||
{ "path": "../spaces/tsconfig.json" }, | ||
{ "path": "../security/tsconfig.json" }, | ||
{ "path": "../licensing/tsconfig.json" }, | ||
{ "path": "../task_manager/tsconfig.json" }, | ||
{ "path": "../event_log/tsconfig.json" }, | ||
{ "path": "../encrypted_saved_objects/tsconfig.json" }, | ||
{ "path": "../features/tsconfig.json" }, | ||
{ "path": "../../../src/plugins/usage_collection/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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"composite": true, | ||
"outDir": "./target/types", | ||
"emitDeclarationOnly": true, | ||
"declaration": true, | ||
"declarationMap": true | ||
}, | ||
"include": [ | ||
"server/**/*", | ||
// have to declare *.json explicitly due to https://github.com/microsoft/TypeScript/issues/25636 | ||
"server/**/*.json", | ||
"public/**/*", | ||
"common/*" | ||
], | ||
"references": [ | ||
{ "path": "../../../src/core/tsconfig.json" }, | ||
{ "path": "../actions/tsconfig.json" }, | ||
{ "path": "../spaces/tsconfig.json" }, | ||
{ "path": "../security/tsconfig.json" }, | ||
{ "path": "../licensing/tsconfig.json" }, | ||
{ "path": "../task_manager/tsconfig.json" }, | ||
{ "path": "../event_log/tsconfig.json" }, | ||
{ "path": "../encrypted_saved_objects/tsconfig.json" }, | ||
{ "path": "../features/tsconfig.json" }, | ||
{ "path": "../../../src/plugins/usage_collection/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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"composite": true, | ||
"outDir": "./target/types", | ||
"emitDeclarationOnly": true, | ||
"declaration": true, | ||
"declarationMap": true | ||
}, | ||
"include": [ | ||
"server/**/*", | ||
"server/**/*.json", | ||
"public/**/*", | ||
"common/*" | ||
], | ||
"references": [ | ||
{ "path": "../../../src/core/tsconfig.json" }, | ||
{ "path": "../alerts/tsconfig.json" }, | ||
{ "path": "../features/tsconfig.json" }, | ||
{ "path": "../triggers_actions_ui/tsconfig.json" }, | ||
{ "path": "../../../src/plugins/kibana_react/tsconfig.json" }, | ||
{ "path": "../../../src/plugins/saved_objects/tsconfig.json" }, | ||
{ "path": "../../../src/plugins/data/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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"composite": true, | ||
"outDir": "./target/types", | ||
"emitDeclarationOnly": true, | ||
"declaration": true, | ||
"declarationMap": true | ||
}, | ||
"include": [ | ||
"server/**/*", | ||
"public/**/*", | ||
"common/**/*", | ||
"config.ts", | ||
"../../../typings/**/*" | ||
], | ||
"references": [ | ||
{ "path": "../../../src/core/tsconfig.json" }, | ||
{ "path": "../alerts/tsconfig.json" }, | ||
{ "path": "../features/tsconfig.json" }, | ||
{ "path": "../../../src/plugins/data/tsconfig.json" }, | ||
{ "path": "../../../src/plugins/saved_objects/tsconfig.json" }, | ||
{ "path": "../../../src/plugins/home/tsconfig.json" }, | ||
{ "path": "../../../src/plugins/charts/tsconfig.json" }, | ||
{ "path": "../../../src/plugins/kibana_react/tsconfig.json" }, | ||
{ "path": "../../../src/plugins/kibana_utils/tsconfig.json" }, | ||
{ "path": "../../../src/plugins/management/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
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