forked from inikulin/parse5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (28 loc) · 837 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": {
"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,
"declarationMap": true,
"sourceMap": true
},
"references": [{ "path": "packages/parse5/tsconfig.json" }],
"typedocOptions": {
"out": "docs/build",
"name": "parse5",
"readme": "README.md",
"emit": "docs",
"excludeInternal": true,
"entryPointStrategy": "packages"
}
}