-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
46 lines (46 loc) · 1.13 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": {
"target": "ES2022",
"module": "ES2022",
"lib": [
"ES2022",
"DOM",
"DOM.AsyncIterable",
"DOM.Iterable",
],
"moduleResolution": "Bundler",
"composite": true,
"noEmit": true,
"declaration": true,
"declarationMap": true,
"downlevelIteration": true,
"importHelpers": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"useDefineForClassFields": false,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"strictNullChecks": true,
"sourceMap": true,
"inlineSources": true,
"pretty": true,
"baseUrl": ".",
"outDir": "build",
"types": ["lit"]
},
"include": [
"dialog/**/*.ts",
"dialog-button/**/*.ts",
"dialog-header/**/*.ts",
"internal/**/*.ts",
"index.ts"
],
"exclude": [
"test/**/*",
".vscode/***/*",
".rollup.cache/**/*",
"build/**/*",
"node_modules"
]
}