kibana/x-pack/tsconfig.json
Tim Roes fb2f0569e2
Typings for saved object client (#29951)
* WIP typings for saved object client

* Move more files to TS

* type saved objects client

* clean up typings for saved object client

* tie typings form server and client for saved objects together

* add missing html import typing to x-pack

* Add missing buildSourcePatterns

* Removed accidental comma

* add typings for saved_object_client tests and fix test cases

* duplicate case_conversion helpers for the moment

* Address PR review

* Fix some documentation

* Replace ts-ignore by any imports

* Remove expect.js from test

* Add more typings to prevent CI failure
2019-02-07 12:43:17 +01:00

38 lines
669 B
JSON

{
"extends": "../tsconfig.json",
"include": [
"typings/**/*",
"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"
]
}
}