forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
82 lines (78 loc) · 2.16 KB
/
Copy pathtsconfig.json
File metadata and controls
82 lines (78 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"outDir": "target/types"
},
"exclude": ["target/**/*"],
"include": [
// add all the folders contains files to be compiled
"common/**/*",
"public/**/*",
"scripts/**/*",
"scripts/**/**.json",
"server/**/*",
"../../../typings/**/*",
// ECS and Osquery schema files
"public/common/schemas/*/**.json"
],
"kbn_references": [
"@kbn/core",
{ "path": "../../../src/setup_node_env/tsconfig.json" },
// add references to other TypeScript projects the plugin depends on
// requiredPlugins from ./kibana.json
"@kbn/data-plugin",
"@kbn/navigation-plugin",
"@kbn/fleet-plugin",
// optionalPlugins from ./kibana.json
"@kbn/cases-plugin",
// requiredBundles from ./kibana.json
"@kbn/es-ui-shared-plugin",
"@kbn/kibana-react-plugin",
"@kbn/kibana-utils-plugin",
// packages
"@kbn/config-schema",
"@kbn/es-query",
"@kbn/utility-types",
"@kbn/securitysolution-io-ts-utils",
"@kbn/osquery-io-ts-types",
"@kbn/i18n-react",
"@kbn/discover-plugin",
"@kbn/lens-plugin",
"@kbn/security-plugin",
"@kbn/triggers-actions-ui-plugin",
"@kbn/timelines-plugin",
"@kbn/spaces-plugin",
"@kbn/i18n",
"@kbn/rison",
"@kbn/react-field",
"@kbn/dev-cli-runner",
"@kbn/telemetry-plugin",
"@kbn/actions-plugin",
"@kbn/features-plugin",
"@kbn/task-manager-plugin",
"@kbn/data-views-plugin",
"@kbn/rule-registry-plugin",
"@kbn/securitysolution-es-utils",
"@kbn/core-elasticsearch-client-server-mocks",
"@kbn/std",
"@kbn/core-elasticsearch-server",
"@kbn/core-saved-objects-api-server",
"@kbn/logging",
"@kbn/safer-lodash-set",
"@kbn/shared-ux-router",
"@kbn/licensing-plugin",
"@kbn/core-lifecycle-browser",
"@kbn/core-saved-objects-server",
"@kbn/monaco",
"@kbn/io-ts-utils",
"@kbn/shared-ux-page-kibana-template",
"@kbn/openapi-generator",
"@kbn/code-editor",
"@kbn/search-types",
"@kbn/react-kibana-context-render",
"@kbn/zod-helpers",
"@kbn/openapi-bundler",
"@kbn/repo-info",
"@kbn/zod"
]
}