| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "compilerOptions": {
- "composite": true,
- "lib": [
- "esnext",
- "dom"
- ],
- "baseUrl": ".",
- "module": "esnext",
- "moduleResolution": "bundler",
- "paths": {
- "@/*": [
- "./src/*"
- ],
- "@img/*": [
- "./src/static/*"
- ]
- },
- "resolveJsonModule": true,
- "types": [
- "@dcloudio/types",
- "@uni-helper/uni-types",
- "@uni-helper/vite-plugin-uni-pages",
- "uview-plus/types",
- "@ttou/uv-typings/v2",
- "miniprogram-api-typings",
- "z-paging/types",
- "./src/types/async-component.d.ts",
- "./src/types/async-import.d.ts",
- "./src/typings.d.ts"
- ],
- "allowJs": true,
- "noImplicitThis": true,
- "outDir": "dist",
- "sourceMap": true,
- "allowSyntheticDefaultImports": true,
- "skipLibCheck": true
- },
- "vueCompilerOptions": {
- "plugins": [
- "@uni-helper/uni-types/volar-plugin"
- ]
- },
- "include": [
- "package.json",
- "src/**/*.ts",
- "src/**/*.js",
- "src/**/*.d.ts",
- "src/**/*.tsx",
- "src/**/*.jsx",
- "src/**/*.vue",
- "src/**/*.json"
- ],
- "exclude": [
- "node_modules",
- "dist"
- ]
- }
|