普兆健康管家后端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
956 B

4 days ago
  1. {
  2. "compilerOptions": {
  3. "composite": true,
  4. "skipLibCheck": true,
  5. "module": "ESNext",
  6. "moduleResolution": "Node",
  7. "resolveJsonModule": true,
  8. "noImplicitThis": true,
  9. "allowSyntheticDefaultImports": true,
  10. "allowJs": true,
  11. "sourceMap": true,
  12. "baseUrl": ".",
  13. "paths": {
  14. "@/*": ["./src/*"]
  15. },
  16. "outDir": "dist",
  17. "lib": ["esnext", "dom"],
  18. "types": [
  19. "@dcloudio/types",
  20. "@uni-helper/uni-types",
  21. "@types/wechat-miniprogram",
  22. "wot-design-uni/global.d.ts",
  23. "z-paging/types",
  24. "./src/typings.d.ts",
  25. "./src/components/components.d.ts"
  26. ]
  27. },
  28. "vueCompilerOptions": {
  29. "plugins": ["@uni-helper/uni-types/volar-plugin"]
  30. },
  31. "exclude": ["node_modules"],
  32. "include": [
  33. "src/**/*.ts",
  34. "src/**/*.uts",
  35. "src/**/*.js",
  36. "src/**/*.d.ts",
  37. "src/**/*.min.js",
  38. "src/**/*.tsx",
  39. "src/**/*.jsx",
  40. "src/**/*.vue",
  41. "src/**/*.json"
  42. ]
  43. }