kibana/x-pack/plugins/logstash/tsconfig.json
Mikhail Shustov e972f5124b
Migrate logstash, monitoring, url_drilldowns, xpack_legacy to ts projects (#91194)
* migrate drilldowns to ts project

* monitoring to ts project

* xpack legacy to ts project

* logstash to ts projects

* missing comma

* list deep project

* export type to refer in d.ts
2021-02-17 04:50:56 -05:00

27 lines
716 B
JSON

{
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"composite": true,
"outDir": "./target/types",
"emitDeclarationOnly": true,
"declaration": true,
"declarationMap": true
},
"include": [
"common/**/*",
"public/**/*",
"server/**/*",
],
"references": [
{ "path": "../../../src/core/tsconfig.json" },
{ "path": "../../../src/plugins/home/tsconfig.json"},
{ "path": "../../../src/plugins/management/tsconfig.json"},
{ "path": "../features/tsconfig.json" },
{ "path": "../licensing/tsconfig.json"},
{ "path": "../monitoring/tsconfig.json"},
{ "path": "../security/tsconfig.json"},
]
}