mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
* [bazel] avoid a little boilerplate for @types packages
* [bazel/ts] stop building sourcemaps since they're ignored
(cherry picked from commit 614139b8e5
)
# Conflicts:
# packages/kbn-logging-mocks/BUILD.bazel
# packages/kbn-logging-mocks/tsconfig.json
# packages/kbn-logging/BUILD.bazel
# packages/kbn-test-jest-helpers/BUILD.bazel
# packages/kbn-test-jest-helpers/tsconfig.json
# packages/kbn-test/BUILD.bazel
# packages/kbn-typed-react-router-config/BUILD.bazel
15 lines
247 B
JSON
15 lines
247 B
JSON
{
|
|
"extends": "../../tsconfig.bazel.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "./target_types",
|
|
"types": [
|
|
"jest",
|
|
"node"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
]
|
|
}
|