kibana/packages/kbn-typed-react-router-config/tsconfig.json
Dario Gieselaar 821aeb1ff4
[APM] Typed client-side routing (#104274)
* [APM] @kbn/typed-router-config

* [APM] typed route config

* Breadcrumbs, wildcards

* Migrate settings, home

* Migrate part of service detail page

* Migrate remaining routes, tests

* Set maxWorkers for precommit script to 4

* Add jest types to tsconfigs

* Make sure transaction distribution data is fetched

* Fix typescript errors

* Remove usage of react-router's useParams

* Add route() utility function

* Don't use ApmServiceContext for alert flyouts

* Don't add onClick handler for breadcrumb

* Clarify ts-ignore

* Remove unused things

* Update documentation

* Use useServiceName() in ServiceMap component
2021-07-15 11:30:59 +02:00

21 lines
462 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"incremental": true,
"declarationDir": "./target_types",
"outDir": "./target_node",
"stripInternal": true,
"declaration": true,
"declarationMap": true,
"isolatedModules": true,
"sourceMap": true,
"sourceRoot": "../../../../../packages/kbn-typed-react-router-config/src",
"types": [
"node",
"jest"
]
},
"include": [
"src/**/*"
]
}