-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
35 lines (35 loc) · 1.2 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
{
"compilerOptions": {
"baseUrl": ".",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"module": "ESNext",
"moduleResolution": "Bundler",
"target": "ESNext",
"resolveJsonModule": true,
"paths": {
"@uni-helper/uni-app-components": [
"./packages/uni-app-components/src/index.ts"
],
"@uni-helper/uni-app-types": ["./packages/uni-app-types/src/index.ts"],
"@uni-helper/uni-cloud-types": [
"./packages/uni-cloud-types/src/index.ts"
],
"@uni-helper/uni-cloud-components": [
"./packages/uni-cloud-components/src/index.ts"
],
"@uni-helper/uni-ui-types": ["./packages/uni-ui-types/src/index.ts"],
"@uni-helper/uni-ui-components": [
"./packages/uni-ui-components/src/index.ts"
],
"@uni-helper/uni-types": ["./packages/uni-types/src/index.ts"],
"@uni-helper/uni-components": ["./packages/uni-components/src/index.ts"]
},
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"types": ["node", "@dcloudio/types"]
},
"include": ["packages/**/*.ts", "packages/**/*.d.ts"],
"exclude": ["**/node_modules/**", "**/dist/**", "**/playground/**"]
}