forked from ant-design/pro-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
43 lines (43 loc) · 1.5 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
{
"compilerOptions": {
"baseUrl": "./",
"target": "esnext",
"moduleResolution": "node",
"jsx": "react-jsx",
"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"],
"@ant-design/pro-components": ["./packages/components/src/index.tsx"]
}
},
"include": [
"typings.d.ts",
"**/src/**/*",
"**/docs/**/*",
"scripts/**/*",
"**/demos",
".eslintrc.js",
"tests",
"jest.config.js",
"**/fixtures",
"./tests/no-duplicated.ts",
"packages/descriptions/src/demos/.tsx"
],
"plugins": [{ "transform": "typescript-transform-paths", "afterDeclarations": true }]
}