kibana/tsconfig.json
Thom Heymann b879a9a497
Add interactive setup CLI (#114493)
* Add interactive setup CLI

* Added tsconfig

* ignore all CLI dev.js files when building

* add cli_init to the root TS project and setup necessary ref

* Fix type errors

* Added suggestions from code review

* ts fix

* fixed build dependencies

* Added suggestions from code review

* fix type definitions

* fix types

* upgraded commander to fix ts issues

* Revert "upgraded commander to fix ts issues"

This reverts commit 52b8943222.

* upgraded commander

Co-authored-by: spalger <spalger@users.noreply.github.com>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2021-10-20 22:17:45 +01:00

26 lines
579 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"outDir": "target/root_types"
},
"include": [
"kibana.d.ts",
"typings/**/*",
"src/cli/**/*",
"src/cli_setup/**/*",
"src/cli_plugin/**/*",
"src/dev/**/*",
"src/fixtures/**/*",
"x-pack/tasks/**/*",
],
"exclude": [],
"references": [
{ "path": "./src/core/tsconfig.json" },
{ "path": "./src/plugins/usage_collection/tsconfig.json" },
{ "path": "./src/plugins/interactive_setup/tsconfig.json" },
{ "path": "./x-pack/plugins/reporting/tsconfig.json" },
]
}