kibana/x-pack/tsconfig.json
Leanid Shutau e9ff201be7
[I18n] Migrate enzyme helpers to TypeScript (#25108)
* [I18n] Migrate enzyme helpers to TypeScript

* Migrate src enzyme helpers

* Remove eslint comments
2018-11-06 15:56:37 +03:00

33 lines
566 B
JSON

{
"extends": "../tsconfig.json",
"include": [
"common/**/*",
"server/**/*",
"plugins/**/*",
"test_utils/**/*"
],
"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/*"
]
},
"types": [
"node",
"jest"
]
}
}