forked from ant-design/ant-design-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
54 lines (54 loc) · 1.09 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
{
"compilerOptions": {
"module": "esnext",
"target": "esnext",
"lib": ["esnext", "dom"],
"sourceMap": false,
"baseUrl": ".",
"jsx": "react",
"allowJs": false,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": false,
"suppressImplicitAnyIndexErrors": true,
"experimentalDecorators": true,
"strict": false,
"skipLibCheck": true,
"moduleResolution": "node",
"esModuleInterop": true,
"outDir": "dist",
"declaration": true,
"noUnusedLocals": false,
"noImplicitAny": false,
"noFallthroughCasesInSwitch": true
},
"exclude": [
"node_modules",
"build",
"dist",
"lib",
"es",
"config",
"scripts",
"webpack",
"jest",
"tslint:latest",
"tslint-config-prettier",
"example",
"_test_",
"tests"
],
"include": [
"**/src/**/*",
"**/docs/**/*",
"scripts/**/*",
"**/demos",
".eslintrc.js",
"jest.config.js",
"**/fixtures",
"./tests/no-duplicated.ts"
],
"paths": {
"@@/*": ["src/.umi/*"]
}
}