| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "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",
- "miniprogram-api-typings",
- "z-paging/types",
- "./src/types/async-component.d.ts",
- "./src/types/async-import.d.ts",
- "./src/typings.d.ts",
- "wot-design-uni/global.d.ts",
- "@uni-helper/uni-app-types",
- "vite/client"
- ],
- "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"
- ]
- }
|