mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Extracts newsfeed plugin to ts project refs (#81254)
This commit is contained in:
parent
2a82bddfe2
commit
0395d686bf
6 changed files with 30 additions and 5 deletions
19
src/plugins/newsfeed/tsconfig.json
Normal file
19
src/plugins/newsfeed/tsconfig.json
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"extends": "../../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"composite": true,
|
||||
"outDir": "./target/types",
|
||||
"emitDeclarationOnly": true,
|
||||
"declaration": true,
|
||||
"declarationMap": true
|
||||
},
|
||||
"include": [
|
||||
"public/**/*",
|
||||
"server/**/*",
|
||||
"common/*",
|
||||
"../../../typings/**/*"
|
||||
],
|
||||
"references": [
|
||||
{ "path": "../../core/tsconfig.json" }
|
||||
]
|
||||
}
|
|
@ -23,6 +23,7 @@
|
|||
{ "path": "../src/plugins/kibana_react/tsconfig.json" },
|
||||
{ "path": "../src/plugins/usage_collection/tsconfig.json" },
|
||||
{ "path": "../src/plugins/telemetry_collection_manager/tsconfig.json" },
|
||||
{ "path": "../src/plugins/telemetry/tsconfig.json" }
|
||||
{ "path": "../src/plugins/telemetry/tsconfig.json" },
|
||||
{ "path": "../src/plugins/newsfeed/tsconfig.json" }
|
||||
]
|
||||
}
|
||||
|
|
|
@ -13,7 +13,8 @@
|
|||
"src/plugins/kibana_react/**/*",
|
||||
"src/plugins/usage_collection/**/*",
|
||||
"src/plugins/telemetry_collection_manager/**/*",
|
||||
"src/plugins/telemetry/**/*"
|
||||
"src/plugins/telemetry/**/*",
|
||||
"src/plugins/newsfeed/**/*"
|
||||
// In the build we actually exclude **/public/**/* from this config so that
|
||||
// we can run the TSC on both this and the .browser version of this config
|
||||
// file, but if we did it during development IDEs would not be able to find
|
||||
|
@ -27,6 +28,7 @@
|
|||
{ "path": "./src/plugins/kibana_react/tsconfig.json" },
|
||||
{ "path": "./src/plugins/usage_collection/tsconfig.json" },
|
||||
{ "path": "./src/plugins/telemetry_collection_manager/tsconfig.json" },
|
||||
{ "path": "./src/plugins/telemetry/tsconfig.json" }
|
||||
{ "path": "./src/plugins/telemetry/tsconfig.json" },
|
||||
{ "path": "./src/plugins/newsfeed/tsconfig.json" }
|
||||
]
|
||||
}
|
||||
|
|
|
@ -8,5 +8,6 @@
|
|||
{ "path": "./src/plugins/usage_collection/tsconfig.json" },
|
||||
{ "path": "./src/plugins/telemetry_collection_manager/tsconfig.json" },
|
||||
{ "path": "./src/plugins/telemetry/tsconfig.json" },
|
||||
{ "path": "./src/plugins/newsfeed/tsconfig.json" },
|
||||
]
|
||||
}
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
{ "path": "../plugins/global_search/tsconfig.json" },
|
||||
{ "path": "../../src/plugins/usage_collection/tsconfig.json" },
|
||||
{ "path": "../../src/plugins/telemetry_collection_manager/tsconfig.json" },
|
||||
{ "path": "../../src/plugins/telemetry/tsconfig.json" }
|
||||
{ "path": "../../src/plugins/telemetry/tsconfig.json" },
|
||||
{ "path": "../../src/plugins/newsfeed/tsconfig.json" }
|
||||
]
|
||||
}
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
{ "path": "./plugins/global_search/tsconfig.json" },
|
||||
{ "path": "../src/plugins/usage_collection/tsconfig.json" },
|
||||
{ "path": "../src/plugins/telemetry_collection_manager/tsconfig.json" },
|
||||
{ "path": "../src/plugins/telemetry/tsconfig.json" }
|
||||
{ "path": "../src/plugins/telemetry/tsconfig.json" },
|
||||
{ "path": "../src/plugins/newsfeed/tsconfig.json" },
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue