forked from opensearch-project/OpenSearch-Dashboards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
30 lines (30 loc) · 1.02 KB
/
tsconfig.json
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
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"tsBuildInfoFile": "./build/tsbuildinfo/opensearch-dashboards"
},
"include": [
"opensearch_dashboards.d.ts",
"src/**/*",
"typings/**/*",
"test_utils/**/*"
],
"exclude": [
"src/**/__fixtures__/**/*",
"src/test_utils/**/*",
"src/core/**/*",
"src/plugins/opensearch_dashboards_utils/**/*",
"src/plugins/opensearch_dashboards_react/**/*"
// In the build we actually exclude **/public/**/* from this config so that
// we can run the TSC on both this and the .browser version of this config
// file, but if we did it during development IDEs would not be able to find
// the tsconfig.json file for public files correctly.
// "src/**/public/**/*"
],
"references": [
{ "path": "./src/test_utils/tsconfig.json" },
{ "path": "./src/core/tsconfig.json" },
{ "path": "./src/plugins/opensearch_dashboards_utils/tsconfig.json" },
{ "path": "./src/plugins/opensearch_dashboards_react/tsconfig.json" }
]
}