123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "compilerOptions": {
- "composite": true,
- "skipLibCheck": true,
- "module": "ESNext",
- "moduleResolution": "Node",
- "resolveJsonModule": true,
- "noImplicitThis": true,
- "allowSyntheticDefaultImports": true,
- "allowJs": true,
- "sourceMap": true,
- "baseUrl": ".",
- "paths": {
- "@/*": ["./src/*"]
- },
- "outDir": "dist",
- "lib": ["esnext", "dom"],
- "types": [
- "@dcloudio/types",
- "wot-design-uni/global.d.ts",
- "@uni-helper/uni-types",
- "@types/wechat-miniprogram"
- ]
- },
- "vueCompilerOptions": {
- "target": 3,
- "plugins": ["@uni-helper/uni-types/volar-plugin"]
- },
- "exclude": ["node_modules"],
- "include": [
- "src/**/*.ts",
- "src/**/*.js",
- "src/**/*.d.ts",
- "src/**/*.tsx",
- "src/**/*.jsx",
- "src/**/*.vue",
- "src/**/*.json"
- ]
- }
|