forked from fb55/htmlparser2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
29 lines (26 loc) · 818 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
{
"compilerOptions": {
/* Basic Options */
"target": "es2019",
"module": "nodenext",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
/* Strict Type-Checking Options */
"strict": true,
/* Additional Checks */
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"isolatedDeclarations": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
/* Module Resolution Options */
"esModuleInterop": true,
"resolveJsonModule": true
}
}