| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "module": "ESNext",
- "moduleResolution": "bundler",
- "allowJs": true,
- "checkJs": false,
- "noEmit": true,
- "jsx": "preserve",
- "paths": {
- "@/*": [
- "./src/*",
- "./src/*.vue",
- "./src/*/index.vue",
- "./src/*/index.js"
- ]
- },
- "lib": ["ESNext", "DOM"],
- "skipLibCheck": true,
- "types": [
- "uni-app",
- "html5plus",
- "miniprogram-api-typings/types/lib.wx.api.d.ts",
- "mini-types/types/api"
- ]
- },
- "include": [
- "src/**/*.js",
- "src/**/*.ts",
- "src/**/*.d.ts",
- "src/**/*.vue"
- ],
- "exclude": [
- "node_modules",
- "dist",
- "unpackage"
- ],
- "vueCompilerOptions": {
- "target": 2.7
- }
- }
|