mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
[type-summarizer] enable @kbn/analytics, @kbn/apm-config-loader and @kbn/apm-utils (#128206)
This commit is contained in:
parent
2e33dd4084
commit
ae91c5bb7d
7 changed files with 11 additions and 0 deletions
|
@ -23,11 +23,13 @@ NPM_MODULE_EXTRA_FILES = [
|
|||
]
|
||||
|
||||
RUNTIME_DEPS = [
|
||||
"@npm//moment",
|
||||
"@npm//moment-timezone",
|
||||
"@npm//tslib",
|
||||
]
|
||||
|
||||
TYPES_DEPS = [
|
||||
"@npm//moment",
|
||||
"@npm//@types/moment-timezone",
|
||||
"@npm//@types/node",
|
||||
]
|
||||
|
@ -70,6 +72,7 @@ ts_project(
|
|||
srcs = SRCS,
|
||||
deps = TYPES_DEPS,
|
||||
declaration = True,
|
||||
declaration_map = True,
|
||||
emit_declaration_only = True,
|
||||
out_dir = "target_types",
|
||||
root_dir = "src",
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"extends": "../../tsconfig.bazel.json",
|
||||
"compilerOptions": {
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"emitDeclarationOnly": true,
|
||||
"isolatedModules": true,
|
||||
"outDir": "./target_types",
|
||||
|
|
|
@ -65,6 +65,7 @@ ts_project(
|
|||
srcs = SRCS,
|
||||
deps = TYPES_DEPS,
|
||||
declaration = True,
|
||||
declaration_map = True,
|
||||
emit_declaration_only = True,
|
||||
out_dir = "target_types",
|
||||
root_dir = "src",
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"extends": "../../tsconfig.bazel.json",
|
||||
"compilerOptions": {
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"emitDeclarationOnly": true,
|
||||
"outDir": "./target_types",
|
||||
"rootDir": "./src",
|
||||
|
|
|
@ -50,6 +50,7 @@ ts_project(
|
|||
srcs = SRCS,
|
||||
deps = TYPES_DEPS,
|
||||
declaration = True,
|
||||
declaration_map = True,
|
||||
emit_declaration_only = True,
|
||||
out_dir = "target_types",
|
||||
root_dir = "src",
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"extends": "../../tsconfig.bazel.json",
|
||||
"compilerOptions": {
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"emitDeclarationOnly": true,
|
||||
"outDir": "target_types",
|
||||
"rootDir": "src",
|
||||
|
|
|
@ -19,6 +19,9 @@ const TYPE_SUMMARIZER_PACKAGES = [
|
|||
'@kbn/mapbox-gl',
|
||||
'@kbn/ace',
|
||||
'@kbn/alerts',
|
||||
'@kbn/analytics',
|
||||
'@kbn/apm-config-loader',
|
||||
'@kbn/apm-utils',
|
||||
];
|
||||
|
||||
type TypeSummarizerType = 'api-extractor' | 'type-summarizer';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue