tsconfig.json 962 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "compilerOptions": {
  3. "composite": true,
  4. "skipLibCheck": true,
  5. "module": "ESNext",
  6. "moduleResolution": "bundler",
  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. }