| 123456789101112131415161718192021222324252627282930 |
- {
- "compilerOptions": {
- "composite": true,
- "skipLibCheck": true,
- "module": "ESNext",
- "moduleResolution": "bundler",
- "allowSyntheticDefaultImports": true,
- "sourceMap": true,
- "baseUrl": ".",
- "paths": {
- "@/*": ["./src/*"]
- },
- "outDir": "dist",
- "lib": ["esnext", "dom"],
- "types": [
- "vite-env.d.ts",
- "@dcloudio/types",
- "@types/wechat-miniprogram",
- "@uni-helper/uni-app-types",
- "wot-design-uni/global.d.ts"
- ]
- },
- "vueCompilerOptions": {
- "target": 3,
- "nativeTags": ["block", "template", "component", "slot"]
- },
- "exclude": ["node_modules"],
- "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "src/**/*.json"]
- }
|