tsconfig.json 658 B

123456789101112131415161718192021222324252627
  1. {
  2. "compilerOptions": {
  3. "composite": true,
  4. "skipLibCheck": true,
  5. "module": "ESNext",
  6. "moduleResolution": "bundler",
  7. "allowSyntheticDefaultImports": true,
  8. "sourceMap": true,
  9. "baseUrl": ".",
  10. "paths": {
  11. "@/*": ["./src/*"]
  12. },
  13. "lib": ["esnext", "dom"],
  14. "types": [
  15. "@dcloudio/types",
  16. "@types/wechat-miniprogram",
  17. "@uni-helper/uni-app-types",
  18. "@uni-helper/uni-ui-types",
  19. "@uni-helper/uni-cloud-types"
  20. ]
  21. },
  22. "vueCompilerOptions": {
  23. "nativeTags": ["block", "template", "component", "slot"]
  24. },
  25. "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
  26. }