-
Notifications
You must be signed in to change notification settings - Fork 325
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 914 Bytes
/
tsconfig.json
File metadata and controls
29 lines (29 loc) · 914 Bytes
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
{
"compilerOptions": {
"resolveJsonModule": true,
"experimentalDecorators": true,
"target": "es6",
"lib": ["es6", "dom", "ES2016.Array.Include"],
"rootDir": ".",
"outDir": "dist",
"types": ["miniprogram-api-typings", "node"],
"skipLibCheck": true,
"declaration": true,
"baseUrl": ".",
"allowJs": true,
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"paths": {
"tdesign-miniprogram/*": ["packages/components/*"],
"tdesign-uniapp/*": ["packages/uniapp-components/*"],
"tdesign-uniapp-chat/*": ["packages/uniapp-pro-components/chat/*"],
"@tdesign/uniapp/*": ["packages/uniapp-components/*"],
"@tdesign/uniapp-chat/*": ["packages/uniapp-pro-components/chat/*"]
}
},
"include": ["packages/**/*", "typing.d.ts"],
"exclude": [
"packages/uniapp-components/npm/**/*"
]
}