-
Notifications
You must be signed in to change notification settings - Fork 4
/
tsconfig.json
38 lines (38 loc) · 1.14 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
{
"compileOnSave": true,
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"declarationMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"incremental": true,
"lib": ["es6", "esnext.asynciterable", "es2019"],
"module": "commonjs",
"noImplicitAny": true,
"noImplicitThis": true,
"noLib": false,
"noUnusedLocals": false,
"outDir": "./lib",
"preserveConstEnums": true,
"pretty": true,
"removeComments": true,
"rootDirs": ["./src", "./tests"],
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictFunctionTypes": false,
"strictNullChecks": true,
"target": "es2017",
"tsBuildInfoFile": "./lib/tsconfig.tsbuildinfo",
"typeRoots": ["./node_modules/@types", "./types"]
},
"exclude": ["node_modules", "lib"],
"typedocOptions": {
"entryPoints": ["src/index.ts"],
"out": "docs",
"excludePrivate": true,
"theme": "default",
"includeVersion": true
}
}