-
Notifications
You must be signed in to change notification settings - Fork 20
/
tsconfig.json
46 lines (45 loc) · 1.29 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
39
40
41
42
43
44
45
46
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
// "resolvePackageJsonImports": true,
// "resolvePackageJsonExports": true,
"declaration": true,
"declarationMap": true,
"newLine": "LF",
"resolveJsonModule": true,
"sourceMap": true,
"noEmit": true,
// Not supported until move to ESM
"verbatimModuleSyntax": false,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"checkJs": false
},
"exclude": ["dist/**/*", "coverage/**/*", "node_modules/**/*", "benchmark/**/*"],
"extends": "@tsconfig/node-lts/tsconfig",
"include": ["src/**/*", "package.json", "__tests__/**/*"],
"ts-node": {
"files": true
},
"typeAcquisition": {
"enable": true
},
"typedocOptions": {
"entryPoints": ["src/hasher.ts", "src/objectSorter.ts"],
"out": "docs/api",
"name": "# Node object hash",
"excludeExternals": true,
"includeVersion": true,
"hideGenerator": true,
"excludePrivate": true,
"readme": "none"
}
}