mirror of
https://github.com/elastic/kibana.git
synced 2025-04-21 08:19:33 -04:00
* Check security privileges before allowing reindexing * Add global readyForUpgrade flag for Cloud * Add ml_settings to cluster_settings * Generalize locking mechanism for stop/starting watcher * Display ML/Watcher stopping/resuming steps in UI * Fix type issues * Handle security being disabled for privilege check * Use xpack_main.info + add types * Fix x-pack builds
36 lines
649 B
JSON
36 lines
649 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"include": [
|
|
"common/**/*",
|
|
"server/**/*",
|
|
"plugins/**/*",
|
|
"test_utils/**/*",
|
|
"typings/**/*"
|
|
],
|
|
"exclude": [
|
|
"test/**/*"
|
|
],
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"ui/*": [
|
|
"src/ui/public/*"
|
|
],
|
|
"plugins/xpack_main/*": [
|
|
"x-pack/plugins/xpack_main/public/*"
|
|
],
|
|
"plugins/security/*": [
|
|
"x-pack/plugins/security/public/*"
|
|
],
|
|
"plugins/spaces/*": [
|
|
"x-pack/plugins/spaces/public/*"
|
|
],
|
|
"test_utils/*": [
|
|
"x-pack/test_utils/*"
|
|
]
|
|
},
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
]
|
|
}
|
|
}
|