mirror of
https://github.com/elastic/kibana.git
synced 2025-04-19 15:35:00 -04:00
* [type-summarizer] reimplement for broader support * Enable sourceMaps in all packages * include naming collision in summarizePackage test * fix readmes * remove unnecessary transient dependency * remove code that was commented out * remove outdated todo comment * ensure errors triggered by untyped-exports are ligible * remove unused import * break out snippet generation from AstIndexer * refactor several massive files into smaller pieces and add more inline docs * fix typos * update jest snapshots * add sections to readme that points people to the useful parts of the source code along with a high-level overview of how the type-summarizer works * remove --dump flag, it doesn't work * use decName instead of calling names.get a second time * include `export` as invalid name
18 lines
387 B
JSON
18 lines
387 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": false,
|
|
"outDir": "./target/types",
|
|
"stripInternal": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"emitDeclarationOnly": true,
|
|
"declarationMap": true,
|
|
"rootDir": "./src"
|
|
},
|
|
"include": [
|
|
"src/core/server/index.ts",
|
|
"src/core/public/index.ts",
|
|
"typings"
|
|
]
|
|
}
|