[type-summarizer] summarize @kbn/alerts types with source-maps (#128191)

This commit is contained in:
Spencer 2022-03-21 12:17:36 -07:00 committed by GitHub
parent bd76573764
commit defba4b5c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View file

@ -73,6 +73,7 @@ ts_project(
srcs = SRCS,
deps = TYPES_DEPS,
declaration = True,
declaration_map = True,
emit_declaration_only = True,
out_dir = "target_types",
root_dir = "src",

View file

@ -2,6 +2,7 @@
"extends": "../../tsconfig.bazel.json",
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"outDir": "target_types",
"rootDir": "src",

View file

@ -18,6 +18,7 @@ const TYPE_SUMMARIZER_PACKAGES = [
'@kbn/generate',
'@kbn/mapbox-gl',
'@kbn/ace',
'@kbn/alerts',
];
type TypeSummarizerType = 'api-extractor' | 'type-summarizer';