-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Expand file tree
/
Copy pathtsconfig.json
More file actions
132 lines (132 loc) · 4.01 KB
/
tsconfig.json
File metadata and controls
132 lines (132 loc) · 4.01 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"extends": "@kbn/tsconfig-base/tsconfig.json",
"compilerOptions": {
"outDir": "target/types"
},
"include": [
"*.ts",
"common/**/*",
"public/**/*",
"server/**/*",
"test/scout/**/*",
"test/scout_oas_schema/**/*",
"test/scout_oas_schema/**/*.json",
"test/scout_anonymous_authc/**/*",
],
"kbn_references": [
"@kbn/core",
"@kbn/inspector-plugin",
"@kbn/kibana-react-plugin",
"@kbn/data-views-plugin",
"@kbn/kibana-utils-plugin",
"@kbn/share-plugin",
"@kbn/presentation-util-plugin",
"@kbn/url-forwarding-plugin",
"@kbn/usage-collection-plugin",
"@kbn/data-plugin",
"@kbn/embeddable-plugin",
"@kbn/home-plugin",
"@kbn/navigation-plugin",
"@kbn/saved-objects-tagging-oss-plugin",
"@kbn/saved-objects-plugin",
"@kbn/screenshot-mode-plugin",
"@kbn/ui-actions-plugin",
"@kbn/spaces-plugin",
"@kbn/config-schema",
"@kbn/utility-types",
"@kbn/es-query",
"@kbn/i18n",
"@kbn/data-view-editor-plugin",
"@kbn/unified-search-plugin",
"@kbn/shared-ux-page-analytics-no-data",
"@kbn/content-management-plugin",
"@kbn/content-management-utils",
"@kbn/i18n-react",
"@kbn/expressions-plugin",
"@kbn/field-formats-plugin",
"@kbn/core-application-browser",
"@kbn/ebt-tools",
"@kbn/shared-ux-button-exit-full-screen",
"@kbn/analytics",
"@kbn/safer-lodash-set",
"@kbn/task-manager-plugin",
"@kbn/core-custom-branding-browser",
"@kbn/shared-ux-router",
"@kbn/saved-objects-management-plugin",
"@kbn/core-saved-objects-server",
"@kbn/core-saved-objects-utils-server",
"@kbn/core-saved-objects-api-server",
"@kbn/content-management-tabbed-table-list-view",
"@kbn/content-management-table-list-view-table",
"@kbn/shared-ux-prompt-not-found",
"@kbn/content-management-content-editor",
"@kbn/serverless",
"@kbn/no-data-page-plugin",
"@kbn/react-kibana-mount",
"@kbn/logging",
"@kbn/presentation-publishing",
"@kbn/content-management-table-list-view-common",
"@kbn/shared-ux-utility",
"@kbn/core-test-helpers-model-versions",
"@kbn/deeplinks-analytics",
"@kbn/react-kibana-context-render",
"@kbn/observability-ai-assistant-plugin",
"@kbn/esql-utils",
"@kbn/lens-embeddable-utils",
"@kbn/lens-plugin",
"@kbn/recently-accessed",
"@kbn/content-management-content-insights-public",
"@kbn/content-management-content-insights-server",
"@kbn/managed-content-badge",
"@kbn/content-management-favorites-public",
"@kbn/core-custom-branding-browser-mocks",
"@kbn/core-mount-utils-browser",
"@kbn/visualization-utils",
"@kbn/core-rendering-browser",
"@kbn/grid-layout",
"@kbn/ui-actions-browser",
"@kbn/esql-types",
"@kbn/saved-objects-tagging-plugin",
"@kbn/react-kibana-context-theme",
"@kbn/std",
"@kbn/css-utils",
"@kbn/es-query-server",
"@kbn/data-service-server",
"@kbn/controls-schemas",
"@kbn/controls-constants",
"@kbn/controls-renderer",
"@kbn/presentation-util",
"@kbn/security-plugin-types-server",
"@kbn/core-saved-objects-common",
"@kbn/content-management-access-control-public",
"@kbn/content-management-access-control-server",
"@kbn/react-query",
"@kbn/core-http-server",
"@kbn/core-chrome-layout-utils",
"@kbn/cps",
"@kbn/as-code-filters-schema",
"@kbn/as-code-filters-transforms",
"@kbn/scout",
"@kbn/test",
"@kbn/core-chrome-app-menu-components",
"@kbn/core-chrome-app-menu",
"@kbn/test-jest-helpers",
"@kbn/scout",
"@kbn/cps-utils",
"@kbn/code-editor-mock",
"@kbn/monaco",
"@kbn/code-editor",
"@kbn/as-code-shared-schemas",
"@kbn/as-code-shared-transforms",
"@kbn/core-http-browser",
"@kbn/lens-common",
"@kbn/dashboard-navigation-options-common",
"@kbn/dashboard-navigation-options-components",
"@kbn/dashboard-navigation-options-schema",
"@kbn/as-code-shared-telemetry",
"@kbn/app-header"
],
"exclude": [
"target/**/*"
]
}