-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
46 lines (46 loc) · 1.5 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
{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Node",
"target": "ES2020",
"jsx": "react",
"strictNullChecks": true,
"strictFunctionTypes": true,
"experimentalDecorators": true,
"useDefineForClassFields": false,
"plugins": [
{
"name": "ts-lit-plugin",
"strict": false,
// These tags are provided by the HA frontend and [almost all] cannot be
// imported by a custom card directly.
"globalTags": [
"ha-card",
"ha-combo-box",
"ha-icon",
"ha-icon-button",
"ha-button-menu",
"ha-circular-progress",
"ha-selector",
"ha-svg-icon",
"mwc-button",
"mwc-list-item",
"paper-toast"
],
"rules": {
"no-unknown-tag-name": "error",
"no-missing-import": "error",
"no-unclosed-tag": "error",
"no-incompatible-type-binding": "warning",
"no-invalid-css": "warning",
"no-missing-element-type-definition": "warning",
"no-property-visibility-mismatch": "error"
}
}
]
},
"exclude": [
"node_modules",
"**/node_modules/*"
]
}