forked from DevCloudFE/react-devui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
40 lines (40 loc) · 1.29 KB
/
tsconfig.base.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
{
"compileOnSave": false,
"compilerOptions": {
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"declaration": false,
"newLine": "LF",
"sourceMap": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2015",
"lib": ["es2015", "dom"],
"useDefineForClassFields": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"suppressImplicitAnyIndexErrors": true,
"disableSizeLimit": true,
"noErrorTruncation": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"baseUrl": ".",
"rootDir": ".",
"paths": {
"@react-devui/hooks": ["packages/hooks/src/index.ts"],
"@react-devui/hooks/*": ["packages/hooks/src/*"],
"@react-devui/icons": ["packages/icons/src/index.ts"],
"@react-devui/icons/*": ["packages/icons/src/*"],
"@react-devui/ui": ["packages/ui/src/index.ts"],
"@react-devui/ui/*": ["packages/ui/src/*"],
"@react-devui/utils": ["packages/utils/src/index.ts"],
"@react-devui/utils/*": ["packages/utils/src/*"]
}
},
"exclude": ["node_modules", "tmp"]
}