mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 01:13:23 -04:00
[ML] Transforms: Migrates transform plugin to TS project ref (#90190)
This commit is contained in:
parent
501f763713
commit
87e83860ce
4 changed files with 30 additions and 0 deletions
26
x-pack/plugins/transform/tsconfig.json
Normal file
26
x-pack/plugins/transform/tsconfig.json
Normal file
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"extends": "../../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"composite": true,
|
||||
"outDir": "./target/types",
|
||||
"emitDeclarationOnly": true,
|
||||
"declaration": true,
|
||||
"declarationMap": true
|
||||
},
|
||||
"include": [
|
||||
"common/**/*",
|
||||
"public/**/*",
|
||||
"server/**/*",
|
||||
"../../../typings/**/*",
|
||||
// have to declare *.json explicitly due to https://github.com/microsoft/TypeScript/issues/25636
|
||||
"public/**/*.json",
|
||||
],
|
||||
"references": [
|
||||
{ "path": "../../../src/core/tsconfig.json" },
|
||||
{ "path": "../../../src/plugins/index_pattern_management/tsconfig.json" },
|
||||
{ "path": "../features/tsconfig.json" },
|
||||
{ "path": "../license_management/tsconfig.json" },
|
||||
{ "path": "../licensing/tsconfig.json" },
|
||||
{ "path": "../ml/tsconfig.json" },
|
||||
]
|
||||
}
|
|
@ -55,6 +55,7 @@
|
|||
{ "path": "../plugins/ml/tsconfig.json" },
|
||||
{ "path": "../plugins/task_manager/tsconfig.json" },
|
||||
{ "path": "../plugins/telemetry_collection_xpack/tsconfig.json" },
|
||||
{ "path": "../plugins/transform/tsconfig.json" },
|
||||
{ "path": "../plugins/triggers_actions_ui/tsconfig.json" },
|
||||
{ "path": "../plugins/ui_actions_enhanced/tsconfig.json" },
|
||||
{ "path": "../plugins/spaces/tsconfig.json" },
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
"plugins/security_solution/cypress/**/*",
|
||||
"plugins/task_manager/**/*",
|
||||
"plugins/telemetry_collection_xpack/**/*",
|
||||
"plugins/transform/**/*",
|
||||
"plugins/translations/**/*",
|
||||
"plugins/triggers_actions_ui/**/*",
|
||||
"plugins/ui_actions_enhanced/**/*",
|
||||
|
@ -133,6 +134,7 @@
|
|||
{ "path": "./plugins/stack_alerts/tsconfig.json" },
|
||||
{ "path": "./plugins/task_manager/tsconfig.json" },
|
||||
{ "path": "./plugins/telemetry_collection_xpack/tsconfig.json" },
|
||||
{ "path": "./plugins/transform/tsconfig.json" },
|
||||
{ "path": "./plugins/translations/tsconfig.json" },
|
||||
{ "path": "./plugins/triggers_actions_ui/tsconfig.json" },
|
||||
{ "path": "./plugins/ui_actions_enhanced/tsconfig.json" },
|
||||
|
|
|
@ -41,6 +41,7 @@
|
|||
{ "path": "./plugins/stack_alerts/tsconfig.json" },
|
||||
{ "path": "./plugins/task_manager/tsconfig.json" },
|
||||
{ "path": "./plugins/telemetry_collection_xpack/tsconfig.json" },
|
||||
{ "path": "./plugins/transform/tsconfig.json" },
|
||||
{ "path": "./plugins/translations/tsconfig.json" },
|
||||
{ "path": "./plugins/triggers_actions_ui/tsconfig.json" },
|
||||
{ "path": "./plugins/ui_actions_enhanced/tsconfig.json" },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue