-
Notifications
You must be signed in to change notification settings - Fork 4.4k
/
Copy pathtsconfig.json
86 lines (86 loc) · 2.16 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
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
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"rootDir": "src",
"declarationDir": "build-types",
"types": [
"gutenberg-env",
"gutenberg-test-env",
"dom-scroll-into-view",
"jest",
"@testing-library/jest-dom",
"snapshot-diff",
"@wordpress/jest-console"
],
// Some errors in Reakit types with TypeScript 4.3
// Remove the following line when they've been addressed.
"skipLibCheck": true,
"strictNullChecks": true
},
"references": [
{ "path": "../compose" },
{ "path": "../date" },
{ "path": "../deprecated" },
{ "path": "../dom" },
{ "path": "../element" },
{ "path": "../hooks" },
{ "path": "../icons" },
{ "path": "../is-shallow-equal" },
{ "path": "../primitives" },
{ "path": "../react-i18n" },
{ "path": "../warning" }
],
"include": [ "src/**/*" ],
"exclude": [
"src/**/*.android.js",
"src/**/*.ios.js",
"src/**/*.native.js",
"src/**/react-native-*",
"src/**/stories/**.js", // only exclude js files, tsx files should be checked
"src/**/test/**.js", // only exclude js files, ts{x} files should be checked
"src/index.js",
"src/alignment-matrix-control",
"src/angle-picker-control",
"src/autocomplete",
"src/box-control",
"src/color-list-picker",
"src/combobox-control",
"src/custom-gradient-picker",
"src/custom-select-control",
"src/dimension-control",
"src/drop-zone",
"src/duotone-picker",
"src/focal-point-picker",
"src/font-size-picker",
"src/form-file-upload",
"src/gradient-picker",
"src/guide",
"src/higher-order/navigate-regions",
"src/higher-order/with-fallback-styles",
"src/higher-order/with-filters",
"src/higher-order/with-focus-return",
"src/higher-order/with-notices",
"src/keyboard-shortcuts",
"src/menu-items-choice",
"src/navigation",
"src/notice",
"src/palette-edit",
"src/panel",
"src/query-controls",
"src/radio",
"src/radio-group",
"src/responsive-wrapper",
"src/sandbox",
"src/search-control",
"src/snackbar",
"src/tab-panel",
"src/toggle-control",
"src/toolbar",
"src/toolbar-button",
"src/toolbar-context",
"src/toolbar-dropdown-menu",
"src/toolbar-group",
"src/toolbar-item",
"src/tree-grid"
]
}