mirror of
https://github.com/elastic/kibana.git
synced 2025-04-21 16:29:04 -04:00
* 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>
25 lines
579 B
JSON
25 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" },
|
|
]
|
|
}
|