-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
47 lines (47 loc) · 1018 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"compilerOptions": {
"target": "ES2017",
"module": "commonjs",
"moduleResolution": "Node",
"removeComments": false,
"noImplicitAny": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"pretty": true,
"sourceMap": true,
"strict": true,
"jsx": "react",
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"noEmitOnError": true,
"noErrorTruncation": true,
"noFallthroughCasesInSwitch": true,
"noEmitHelpers": true,
"noImplicitReturns": true,
"declaration": true,
"downlevelIteration": true,
"isolatedModules": false,
"rootDir": "./src",
"outDir": "lib"
},
"include": ["src"],
"exclude": [
"node_modules",
"dist",
"lib",
"es6",
"es2020",
"esm",
"docs",
"README.md"
],
"typedocOptions": {
"entryPoints": [
"src/index.ts",
],
"out": "typedocs"
}
}