| 12345678910111213141516171819202122232425262728 |
- {
- "compilerOptions": {
- "composite": true,
- "skipLibCheck": true,
- "module": "ESNext",
- "moduleResolution": "bundler",
- "allowSyntheticDefaultImports": true,
- "sourceMap": true,
- "baseUrl": ".",
- "paths": {
- "@/*": ["./src/*"]
- },
- "outDir": "dist",
- "lib": ["esnext", "dom"],
- "types": [
- "@dcloudio/types",
- "@types/wechat-miniprogram",
- "@uni-helper/uni-app-types",
- "@uni-helper/uni-ui-types",
- "@uni-helper/uni-cloud-types"
- ]
- },
- "vueCompilerOptions": {
- "nativeTags": ["block", "template", "component", "slot"]
- },
- "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
- }
|