-
Notifications
You must be signed in to change notification settings - Fork 80
/
tsconfig.json
37 lines (37 loc) · 978 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
{
"compilerOptions": {
"plugins": [
{
"name": "ts-lit-plugin",
"strict": true
}
],
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"forceConsistentCasingInFileNames": true,
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"pretty": true,
"sourceMap": true,
"strict": true,
"experimentalDecorators": true,
"rootDir": ".",
"outDir": "dist",
"esModuleInterop": true,
"declaration": false,
// ES2022 corresponds to Chrome 94+
// https://caniuse.com/?search=es2022
// ES2023 starts at 110+
"module": "ES2022",
"moduleResolution": "node",
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
// Added for compatibility with snowback/esbuild builder.
"isolatedModules": true
},
"include": ["**/*.ts"],
"exclude": ["node_modules"]
}