mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
* Trying to get import to work * Plumbed alerts client through and logging errors * No longer need the ES cluster client * Fixing types * Fixing imports * Fixing integration tests and refactoring * Throwing an error when rule registry is disabled * Reworking alert update and get to catch errors * Adding tests and fixing errors
32 lines
998 B
JSON
32 lines
998 B
JSON
{
|
|
"extends": "../../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./target/types",
|
|
"emitDeclarationOnly": true,
|
|
"declaration": true,
|
|
"declarationMap": true
|
|
},
|
|
"include": [
|
|
"common/**/*",
|
|
"public/**/*",
|
|
"server/**/*",
|
|
"../../../typings/**/*"
|
|
],
|
|
"references": [
|
|
{ "path": "../../../src/core/tsconfig.json" },
|
|
|
|
// optionalPlugins from ./kibana.json
|
|
{ "path": "../lens/tsconfig.json" },
|
|
{ "path": "../security/tsconfig.json" },
|
|
{ "path": "../spaces/tsconfig.json" },
|
|
|
|
// Required from './kibana.json'
|
|
{ "path": "../actions/tsconfig.json" },
|
|
{ "path": "../rule_registry/tsconfig.json" },
|
|
{ "path": "../triggers_actions_ui/tsconfig.json"},
|
|
{ "path": "../../../src/plugins/es_ui_shared/tsconfig.json" },
|
|
{ "path": "../../../src/plugins/kibana_react/tsconfig.json" },
|
|
{ "path": "../../../src/plugins/kibana_utils/tsconfig.json" },
|
|
{ "path": "../../../src/plugins/saved_objects/tsconfig.json" }
|
|
]
|
|
}
|