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