mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 11:05:39 -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 = [
|
RUNTIME_DEPS = [
|
||||||
|
"@npm//moment",
|
||||||
"@npm//moment-timezone",
|
"@npm//moment-timezone",
|
||||||
"@npm//tslib",
|
"@npm//tslib",
|
||||||
]
|
]
|
||||||
|
|
||||||
TYPES_DEPS = [
|
TYPES_DEPS = [
|
||||||
|
"@npm//moment",
|
||||||
"@npm//@types/moment-timezone",
|
"@npm//@types/moment-timezone",
|
||||||
"@npm//@types/node",
|
"@npm//@types/node",
|
||||||
]
|
]
|
||||||
|
@ -70,6 +72,7 @@ ts_project(
|
||||||
srcs = SRCS,
|
srcs = SRCS,
|
||||||
deps = TYPES_DEPS,
|
deps = TYPES_DEPS,
|
||||||
declaration = True,
|
declaration = True,
|
||||||
|
declaration_map = True,
|
||||||
emit_declaration_only = True,
|
emit_declaration_only = True,
|
||||||
out_dir = "target_types",
|
out_dir = "target_types",
|
||||||
root_dir = "src",
|
root_dir = "src",
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
"extends": "../../tsconfig.bazel.json",
|
"extends": "../../tsconfig.bazel.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
|
"declarationMap": true,
|
||||||
"emitDeclarationOnly": true,
|
"emitDeclarationOnly": true,
|
||||||
"isolatedModules": true,
|
"isolatedModules": true,
|
||||||
"outDir": "./target_types",
|
"outDir": "./target_types",
|
||||||
|
|
|
@ -65,6 +65,7 @@ ts_project(
|
||||||
srcs = SRCS,
|
srcs = SRCS,
|
||||||
deps = TYPES_DEPS,
|
deps = TYPES_DEPS,
|
||||||
declaration = True,
|
declaration = True,
|
||||||
|
declaration_map = True,
|
||||||
emit_declaration_only = True,
|
emit_declaration_only = True,
|
||||||
out_dir = "target_types",
|
out_dir = "target_types",
|
||||||
root_dir = "src",
|
root_dir = "src",
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
"extends": "../../tsconfig.bazel.json",
|
"extends": "../../tsconfig.bazel.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
|
"declarationMap": true,
|
||||||
"emitDeclarationOnly": true,
|
"emitDeclarationOnly": true,
|
||||||
"outDir": "./target_types",
|
"outDir": "./target_types",
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
|
|
|
@ -50,6 +50,7 @@ ts_project(
|
||||||
srcs = SRCS,
|
srcs = SRCS,
|
||||||
deps = TYPES_DEPS,
|
deps = TYPES_DEPS,
|
||||||
declaration = True,
|
declaration = True,
|
||||||
|
declaration_map = True,
|
||||||
emit_declaration_only = True,
|
emit_declaration_only = True,
|
||||||
out_dir = "target_types",
|
out_dir = "target_types",
|
||||||
root_dir = "src",
|
root_dir = "src",
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
"extends": "../../tsconfig.bazel.json",
|
"extends": "../../tsconfig.bazel.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
|
"declarationMap": true,
|
||||||
"emitDeclarationOnly": true,
|
"emitDeclarationOnly": true,
|
||||||
"outDir": "target_types",
|
"outDir": "target_types",
|
||||||
"rootDir": "src",
|
"rootDir": "src",
|
||||||
|
|
|
@ -19,6 +19,9 @@ const TYPE_SUMMARIZER_PACKAGES = [
|
||||||
'@kbn/mapbox-gl',
|
'@kbn/mapbox-gl',
|
||||||
'@kbn/ace',
|
'@kbn/ace',
|
||||||
'@kbn/alerts',
|
'@kbn/alerts',
|
||||||
|
'@kbn/analytics',
|
||||||
|
'@kbn/apm-config-loader',
|
||||||
|
'@kbn/apm-utils',
|
||||||
];
|
];
|
||||||
|
|
||||||
type TypeSummarizerType = 'api-extractor' | 'type-summarizer';
|
type TypeSummarizerType = 'api-extractor' | 'type-summarizer';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue