kibana/x-pack/tsconfig.json
Josh Dover 888217dc0f
Upgrade Assistant Follow-ups (#29663)
* 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
2019-02-04 13:36:42 -06:00

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"
]
}
}