kibana/x-pack/plugins/telemetry_collection_xpack/tsconfig.json
hardikpnsp d39701fc97
[Telemetry] enforce import export type (#96487)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2021-04-08 06:37:01 -04:00

22 lines
548 B
JSON

{
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"composite": true,
"outDir": "./target/types",
"emitDeclarationOnly": true,
"declaration": true,
"declarationMap": true,
"isolatedModules": true
},
"include": [
"common/**/*",
"server/**/*",
"../../../typings/*"
],
"references": [
{ "path": "../../../src/core/tsconfig.json" },
{ "path": "../../../src/plugins/telemetry_collection_manager/tsconfig.json" },
{ "path": "../../../src/plugins/telemetry/tsconfig.json" }
]
}