forked from ant-design/pro-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
39 lines (39 loc) · 1.27 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
{
"compilerOptions": {
"baseUrl": "./",
"target": "esnext",
"moduleResolution": "node",
"jsx": "preserve",
"esModuleInterop": true,
"experimentalDecorators": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"suppressImplicitAnyIndexErrors": true,
"declaration": true,
"skipLibCheck": true,
"paths": {
"@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"]
}
},
"include": [
"**/src/**/*",
"**/docs/**/*",
"scripts/**/*",
"**/demos",
".eslintrc.js",
"tests",
"jest.config.js",
"**/fixtures",
"./tests/no-duplicated.ts"
]
}