-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
38 lines (37 loc) · 1.12 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
{
"compilerOptions": {
"target": "es2018",
"module": "esNext",
"lib": ["es2019", "dom"],
"moduleResolution": "node",
"downlevelIteration": true,
"strict": true ,
"esModuleInterop": true ,
"isolatedModules": false,
"preserveConstEnums": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"sourceMap": true,
"declaration": false,
"noImplicitAny": false,
"noImplicitReturns": false,
"noImplicitUseStrict": false,
"noUnusedParameters": false,
"suppressImplicitAnyIndexErrors": true,
"noFallthroughCasesInSwitch": true,
"noImplicitThis": false,
"noUnusedLocals": false,
"allowUnreachableCode": false,
"removeComments": true,
"emitDecoratorMetadata": true,
"importHelpers": true,
"strictNullChecks": false,
"experimentalDecorators": true,
"baseUrl": "./",
"rootDir": "",
"paths": {
"custom-elements-hmr-polyfill": ["src/package"]
}
},
"exclude": ["node_modules"]
}