generated from CherishMvp/uni-vue3-vite-ts-pinia
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
23 lines (22 loc) · 849 Bytes
/
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
{
"compilerOptions": {
"target": "ES5",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"allowJs": true,
"outDir": "./dist",
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"baseUrl": ".",
"skipLibCheck": true,
"paths": {
"@/*": ["./src/*"]
},
"lib": ["esnext", "dom"],
"types": ["@dcloudio/types", "miniprogram-api-typings", "@uni-helper/uni-ui-types", "@ttou/uview-typings/v3", "@ttou/uview-typings/refs"]
},
"exclude": ["node_modules", "dist"],
"include": ["src/*.vue", "src/**/*.vue", "src/**/**/*.vue", "src/**/**/**/*.vue", "src/**/*.js", "src/**/**/*.js", "src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "./auto-imports.d.ts"]
}