mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 01:13:23 -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
17 lines
300 B
JSON
17 lines
300 B
JSON
{
|
|
"extends": "../../tsconfig.bazel.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "./target_types",
|
|
"rootDir": "src",
|
|
"stripInternal": true,
|
|
"types": [
|
|
"jest",
|
|
"node"
|
|
]
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts"
|
|
]
|
|
}
|