mirror of
https://github.com/elastic/kibana.git
synced 2025-04-22 17:04:01 -04:00
* [bazel] avoid a little boilerplate for @types packages * [bazel/ts] stop building sourcemaps since they're ignored
13 lines
322 B
JSON
13 lines
322 B
JSON
{
|
|
"extends": "../../tsconfig.bazel.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "./target_types",
|
|
"stripInternal": true,
|
|
"rootDir": "src",
|
|
"types": ["jest", "node"]
|
|
},
|
|
"include": ["src/**/*", "index.d.ts"],
|
|
"exclude": ["**/__fixtures__/**/*"]
|
|
}
|