kibana/x-pack/tsconfig.json
Ahmad Bamieh 8c8ef33d36
[i18n] move translations into NP plugin (#39177)
* new platform xpack plugin

* update env snapshot

* update all snapshots

* plugin service tests

* fix scripts/check_ts_projects.js

* update i18nrc

* run i18n_check
2019-06-26 11:29:11 +03:00

43 lines
842 B
JSON

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