-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
37 lines (37 loc) · 1.05 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
{
"compilerOptions": {
"allowJs": true,
"target": "ES2021",
"module": "ES2020",
"moduleResolution": "node",
"strict": true,
"useDefineForClassFields": false,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"downlevelIteration": true,
"sourceMap": true,
"lib": ["ES2020", "dom"],
"esModuleInterop": true,
"baseUrl": ".",
"skipLibCheck": true,
"experimentalDecorators": true,
"paths": {
"js-element/hooks": ["src/main/js-element-hooks.ts"],
"js-element/utils": ["src/main/js-element-utils.ts"],
"js-element/lit": ["src/main/js-element-lit.ts"],
"js-element": ["src/main/js-element.ts"]
},
"typeRoots": ["node_modules/@types"],
"types": ["node", "web"]
},
"files": [
"src/main/js-element.ts",
"src/main/js-element-hooks.ts",
"src/main/js-element-utils.ts",
"src/main/js-element-lit.ts"
],
"include": ["./src/main/**/*.*", "./src/stories/**/*.*"],
"exclude": ["node_modules"]
}