-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
tsconfig.json
48 lines (47 loc) · 1.53 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
{
"compilerOptions": {
"baseUrl": "./",
"target": "esnext",
"module": "ESNext",
"moduleResolution": "node",
"jsx": "react-jsx",
"esModuleInterop": true,
"experimentalDecorators": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"declaration": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"types": ["vitest/globals"],
"paths": {
"@@/*": [".dumi/tmp/*"],
"@ant-design/pro-layout": ["../../packages/layout/src/index.tsx"],
"@ant-design/pro-form": ["./packages/form/src/index.tsx"],
"@ant-design/pro-table": ["./packages/table/src/index.tsx"],
"@ant-design/pro-field": ["./packages/field/src/index.tsx"],
"@ant-design/pro-skeleton": ["./packages/skeleton/src/index.tsx"],
"@ant-design/pro-list": ["./packages/list/src/index.tsx"],
"@ant-design/pro-provider": ["./packages/provider/src/index.tsx"],
"@ant-design/pro-descriptions": ["./packages/descriptions/src/index.tsx"],
"@ant-design/pro-utils": ["./packages/utils/src/index.tsx"],
"@ant-design/pro-card": ["./packages/card/src/index.tsx"],
"@ant-design/pro-components": ["./packages/components/src/index.tsx"]
}
},
"include": [
"./tests/setupTests.ts",
"vitest.config.ts",
".dumirc.ts",
"typings.d.ts",
"**/src/**/*",
"**/docs/**/*",
"scripts/**/*",
"**/demos",
".eslintrc.js",
"tests",
"**/fixtures",
"./tests/no-duplicated.ts",
"packages/descriptions/src/demos/.tsx"
]
}