Vben
2021-03-16 3732016062ca586c7d7ad7aa5e479c423be77871
提交 | 用户 | age
2f6253 1 {
2   "compilerOptions": {
025ee9 3     "target": "esnext",
2f6253 4     "module": "esnext",
5     "moduleResolution": "node",
6     "strict": true,
7     "forceConsistentCasingInFileNames": true,
8     "allowSyntheticDefaultImports": true,
9     "strictFunctionTypes": false,
97180e 10     "jsx": "preserve",
2f6253 11     "baseUrl": ".",
12     "allowJs": true,
7658f4 13     "sourceMap": true,
2f6253 14     "esModuleInterop": true,
aaae66 15     "resolveJsonModule": true,
2f6253 16     "noUnusedLocals": true,
17     "noUnusedParameters": true,
18     "experimentalDecorators": true,
7db0c5 19     "lib": ["dom", "esnext"],
664035 20     "types": ["vite/client"],
fcee7d 21     "typeRoots": ["./node_modules/@types/", "./types"],
2f6253 22     "incremental": true,
3ba828 23     "noImplicitAny": false,
2f6253 24     "skipLibCheck": true,
25     "paths": {
fcee7d 26       "/@/*": ["src/*"],
V 27       "/#/*": ["types/*"]
2f6253 28     }
29   },
fcee7d 30   "include": [
V 31     "src/**/*.ts",
32     "src/**/*.d.ts",
33     "src/**/*.tsx",
34     "src/**/*.vue",
35     "types/**/*.d.ts",
36     "types/**/*.ts",
37     "mock/**/*.ts"
38   ],
7db0c5 39   "exclude": ["node_modules", "dist", "**/*.js"]
2f6253 40 }