kibana/x-pack/tsconfig.json
Larry Gregory 632c63ab21
[6.x] Spaces Phase 1 (#21408) (#23639)
Backports the following commits to 6.x:
 - Spaces Phase 1  (#21408)
2018-10-01 09:53:43 -04:00

28 lines
461 B
JSON

{
"extends": "../tsconfig.json",
"include": [
"common/**/*",
"server/**/*",
"plugins/**/*",
],
"exclude": [
"test/**/*"
],
"compilerOptions": {
"paths": {
"ui/*": [
"src/ui/public/*"
],
"plugins/xpack_main/*": [
"x-pack/plugins/xpack_main/public/*"
],
"plugins/spaces/*": [
"x-pack/plugins/spaces/public/*"
]
},
"types": [
"node",
"jest"
]
}
}