kibana/x-pack/tsconfig.json
Tiago Costa 9ca411c09e
Avoid transpiled files end up into the repo when building (#32069)
* fix(na): avoid transpiled files endup on repo when building xpack.

* docs(NA): added todo in order to remove added code when we run the upgrade to babel@7.

* fix(NA): include missing files from the x-pack build.
2019-03-01 00:26:42 +00:00

39 lines
710 B
JSON

{
"extends": "../tsconfig.json",
"include": [
"typings/**/*",
"common/**/*",
"server/**/*",
"plugins/**/*",
"test_utils/**/*"
],
"exclude": [
"test/**/*"
],
"compilerOptions": {
"outDir": ".",
"paths": {
"ui/*": [
"src/legacy/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",
"@kbn/test/types/expect.js"
]
}
}