kibana/packages/kbn-test/tsconfig.json
Spencer 8b87d4ba30
[bazel] avoid a little boilerplate in packages (#126309) (#126380)
* [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
2022-02-24 21:15:20 +00:00

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__/**/*"]
}