kibana/x-pack/tsconfig.json
tibmt fb6be4caed Translate Spaces component (#24411)
* Translate Spaces component

* fix one little error

* update Spaces component

* update translation of Spaces components

* Update snapshots

* update Space translation - intl type

* update Space translation - remove view/views id namespace

* rename ids

* use testing helper functions instead of shallow, render, mount from enzyme

* fix unit tests

* fix ts path for enzyme test helpers

* fix path to enzyme helpers test functions

* Update snapshots

* fix path to enzyme test helpers

* Remove unused dependency.
2018-11-15 11:09:12 +03:00

36 lines
629 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/*"
],
"test_utils/*": [
"x-pack/test_utils/*"
]
},
"types": [
"node",
"jest"
]
}
}