mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
* [ts] enable sourcemaps in summarized types of @kbn/crypto * update snapshots * remove unnecessary exports of @kbn/type-summarizer package * remove tsc from the build process * use `@kbn/type-summarizer` to summarize its own types * add tests for interface and function * switch to export type where necessary * ignore __tmp__ in global jest preset * ignore __tmp__ globally * remove `@kbn/crypto` types path
15 lines
288 B
JSON
15 lines
288 B
JSON
{
|
|
"extends": "../../tsconfig.bazel.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "./target_types",
|
|
"rootDir": "src",
|
|
"types": [
|
|
"jest",
|
|
"node"
|
|
]
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|