-
Notifications
You must be signed in to change notification settings - Fork 35
/
tsconfig.json
42 lines (42 loc) · 881 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
{
"compilerOptions": {
"target": "esnext",
"allowJs": true,
"skipLibCheck": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"importHelpers": true,
"noEmit": true,
"jsx": "react-jsx",
"esModuleInterop": true,
"sourceMap": true,
"baseUrl": "./",
"strict": true,
"paths": {
"@/*": ["src/*"],
"@@/*": ["src/.umi/*"]
},
"allowSyntheticDefaultImports": true,
"plugins": [
{
"name": "typescript-styled-plugin"
}
],
"isolatedModules": true,
"lib": ["dom", "dom.iterable", "esnext"],
"noFallthroughCasesInSwitch": true
},
"include": ["mock/**/*", "src/**/*", "config/**/*", "typings.d.ts"],
"exclude": [
"node_modules",
"lib",
"es",
"dist",
"typings",
"**/__test__",
"test",
"docs",
"tests"
]
}