forked from GoogleChrome/chromium-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
38 lines (38 loc) · 901 Bytes
/
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
{
"compilerOptions": {
"module": "ES2022",
"moduleResolution": "bundler",
"plugins": [
{
"name": "ts-lit-plugin",
"rules": {
"no-incompatible-type-binding": "off"
}
}
],
"strict": true,
"noImplicitAny": false,
"esModuleInterop": true,
"skipLibCheck": true,
"rootDir": "client-src",
"allowJs": true,
"checkJs": false,
"resolveJsonModule": true,
"outDir": "build",
"emitDeclarationOnly": false,
"incremental": true,
"lib": ["ES2023", "DOM"],
"experimentalDecorators": true,
"useDefineForClassFields": false,
"target": "ES2022",
},
"include": [
"client-src/js-src/**/*",
"client-src/elements/**/*",
"client-src/components.js"
],
"exclude": [
"node_modules",
"static/dist"
]
}