-
-
Notifications
You must be signed in to change notification settings - Fork 251
Expand file tree
/
Copy pathtsconfig.json
More file actions
19 lines (19 loc) · 592 Bytes
/
tsconfig.json
File metadata and controls
19 lines (19 loc) · 592 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"compilerOptions": {
"target": "es2019",
"module": "Node16",
"moduleResolution": "Node16",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"composite": true,
"skipLibCheck": true
},
"references": [{ "path": "packages/parse5/tsconfig.json" }]
}