kibana/x-pack/tsconfig.json
igoristic 205c2ab761
[Monitoring] NP migration: Local angular module (#51823)
* More np stuff

* Fixed tests and added more np stuff

* Added missing variable

* Fixed path and linting

* resolved conflicts

* Fixed liniting issues

* Fixed type tests

* Fixed i18n check

* Added from master

* Added more shims

* Updated master

* Merged master

* Fixed ts config file

* Fixed ui_exports

* Fixed snapshots

* Fixed hard refresh bug and some tests

* Addresed feedback

* Added missing imports

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-02-10 15:57:20 -05:00

46 lines
No EOL
1 KiB
JSON

{
"extends": "../tsconfig.json",
"include": [
"typings/**/*",
"legacy/common/**/*",
"legacy/server/**/*",
"legacy/plugins/**/*",
"plugins/**/*",
"test_utils/**/*",
"tasks/**/*"
],
"exclude": [
"test/**/*",
"legacy/plugins/siem/cypress/**/*",
"legacy/plugins/apm/cypress/**/*",
"**/typespec_tests.ts"
],
"compilerOptions": {
"outDir": ".",
"paths": {
"kibana/public": ["src/core/public"],
"kibana/server": ["src/core/server"],
"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/*"
],
"plugins/*": ["src/legacy/core_plugins/*/public/"],
"fixtures/*": ["src/fixtures/*"]
},
"types": [
"node",
"jest"
]
}
}