-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
36 lines (36 loc) · 1.03 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
{
"compilerOptions": {
"baseUrl": "./",
"target": "esnext",
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"experimentalDecorators": true,
"noEmitOnError": false,
"strict": false,
"forceConsistentCasingInFileNames": false,
"noImplicitReturns": true,
"suppressImplicitAnyIndexErrors": true,
"declaration": true,
"skipLibCheck": true,
"paths": {
"@ant-design/pro-skeleton": ["./packages/skeleton/src/index.tsx"],
"@ant-design/pro-list": ["./packages/list/src/index.tsx"],
"@ant-design/pro-descriptions": ["./packages/descriptions/src/index.tsx"],
"@ant-design/pro-utils": ["./packages/utils/src/index.tsx"],
"@awaited/select-ant-query-table": ["./packages/select-ant-query-table/src/index.ts"]
}
},
"include": [
"**/src/**/*",
"**/docs/**/*",
"scripts/**/*",
"**/demos",
".eslintrc.js",
"tests",
"jest.config.js",
"**/fixtures",
"./tests/no-duplicated.ts",
"packages/descriptions/src/demos/.tsx"
]
}