tsconfig.json 979 B

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