tsconfig.json 874 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. ]
  26. },
  27. "vueCompilerOptions": {
  28. "plugins": ["@uni-helper/uni-types/volar-plugin"]
  29. },
  30. "exclude": ["node_modules"],
  31. "include": [
  32. "src/**/*.ts",
  33. "src/**/*.js",
  34. "src/**/*.d.ts",
  35. "src/**/*.tsx",
  36. "src/**/*.jsx",
  37. "src/**/*.vue",
  38. "src/**/*.json"
  39. ]
  40. }