-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
110 lines (110 loc) · 2.53 KB
/
tsconfig.json
File metadata and controls
110 lines (110 loc) · 2.53 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
{
"extends": "@exmg/ts-config-lit",
"compilerOptions": {
"lib": ["esnext", "dom", "dom.iterable"],
"module": "node16",
"moduleResolution": "node16",
"declaration": true,
"sourceMap": true,
"inlineSources": true,
"esModuleInterop": true,
"skipLibCheck": true,
"noImplicitAny": false,
"outDir": "./",
"baseUrl": "./",
"paths": {
"@exmg/exm-*": ["packages/exm-*"]
},
"composite": true,
"importHelpers": true,
"plugins": [
{
"name": "ts-lit-plugin",
"rules": {
"no-unknown-tag-name": "error",
"no-unclosed-tag": "error",
"no-unknown-property": "error",
"no-unintended-mixed-binding": "error",
"no-invalid-boolean-binding": "error",
"no-expressionless-property-binding": "error",
"no-noncallable-event-binding": "error",
"no-boolean-in-attribute-binding": "error",
"no-complex-attribute-binding": "error",
"no-nullable-attribute-binding": "error",
"no-incompatible-type-binding": "error",
"no-invalid-directive-binding": "error",
"no-incompatible-property-type": "error",
"no-unknown-property-converter": "error",
"no-invalid-attribute-name": "error",
"no-invalid-tag-name": "error",
"no-property-visibility-mismatch": "error",
"no-unknown-attribute": "off",
"no-unknown-event": "off",
"no-unknown-slot": "off",
"no-invalid-css": "off"
}
}
]
},
"include": ["*.ts"],
"references": [
{
"path": "packages/exm-button"
},
{
"path": "packages/exm-chip-input"
},
{
"path": "packages/exm-grid"
},
{
"path": "packages/exm-dialogs"
},
{
"path": "packages/exm-tooltip"
},
{
"path": "packages/exm-radio"
},
{
"path": "packages/exm-sortable"
},
{
"path": "packages/exm-markdown-editor"
},
{
"path": "packages/exm-copy-to-clipboard"
},
{
"path": "packages/exm-form-drawer"
},
{
"path": "packages/exm-form"
},
{
"path": "packages/exm-breadcrumbs"
},
{
"path": "packages/exm-collapsed"
},
{
"path": "packages/exm-snackbar"
},
{
"path": "packages/exm-upload"
},
{
"path": "packages/exm-navigation"
},
{
"path": "packages/exm-search"
},
{
"path": "packages/exm-theme"
},
{
"path": "demo"
}
],
"exclude": []
}