-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathtsconfig.check.json
More file actions
41 lines (41 loc) · 1.13 KB
/
tsconfig.check.json
File metadata and controls
41 lines (41 loc) · 1.13 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
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"tsBuildInfoFile": "./build/tsbuildinfo/osd-type-check"
},
"include": [
"opensearch_dashboards.d.ts",
"src/**/*.ts",
"src/**/*.tsx",
"typings/**/*.ts",
"typings/**/*.tsx",
"test_utils/**/*.ts",
"test_utils/**/*.tsx"
],
"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"
}
]
}