-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
59 lines (59 loc) · 1.79 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"compilerOptions": {
"baseUrl": ".",
"jsx": "react",
"module": "esnext",
"target": "es2019",
"lib": ["es6", "dom", "es2016", "es2017", "es2018", "es2019", "es2020", "es2021", "es2022"],
"sourceMap": true,
"allowJs": true,
"rootDir": "./",
"outDir": "lib",
"declaration": true,
"declarationMap": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"strictBindCallApply": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"esModuleInterop": true,
"skipLibCheck": true,
"preserveSymlinks": true,
"resolveJsonModule": true,
"importHelpers": true,
"removeComments": false,
"allowSyntheticDefaultImports": true
},
"include": ["src/**/*.ts", "src/**/*.tsx", "custom-typings/**/*.d.ts"],
"exclude": ["node_modules", "../node_modules"],
"typedocOptions": {
"entryPoints": ["src/index.ts"],
"out": "static/typedoc",
"json": "static/typedoc/typedoc.json",
"excludePrivate": true,
"excludeProtected": true,
"excludeInternal": true,
"hideGenerator": true,
"categorizeByGroup": false,
/*
"sort": ["kind", "alphabetical"],
"tocKindSortOrder": [
"Function",
"Module",
"Class",
"Method",
"Interface",
"Enumeration",
"Variable",
"TypeAlias",
"ObjectLiteral"
]
*/
}
}