-
-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 664 Bytes
/
tsconfig.json
File metadata and controls
29 lines (29 loc) · 664 Bytes
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
{
"extends": "@sindresorhus/tsconfig",
"compilerOptions": {
"outDir": "dist",
"target": "es2016",
"lib": [
"es2016"
]
},
"typedocOptions": {
"out": "docs",
// Links to `ArrayPredicate` and others doesn't work when this is specified...
// "entryPoint": "Ow",
"mode": "file",
"target": "ES6",
"module": "commonjs",
"moduleResolution": "node",
"exclude": "source/test",
"ignoreCompilerErrors": true,
"excludePrivate": true,
"excludeNotExported": true,
"stripInternal": true,
"suppressExcessPropertyErrors": true,
"suppressImplicitAnyIndexErrors": true,
"theme": "minimal",
"hideGenerator": true,
"readme": "none"
}
}