29 lines
769 B
JSON
29 lines
769 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"jsx": "preserve",
|
|
"lib": ["DOM", "ESNext"],
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": ["@dcloudio/types", "@uni-helper/uni-app-types", "miniprogram-api-typings", "z-paging/types"],
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"include": ["src", "types"]
|
|
},
|
|
"vueCompilerOptions": {
|
|
"plugins": ["@uni-helper/uni-app-types/volar-plugin"]
|
|
},
|
|
"exclude": ["dist", "node_modules", "uni_modules"]
|
|
}
|