tsconfig.json 680 B

12345678910111213141516171819202122232425262728
  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. "outDir": "dist",
  14. "lib": ["esnext", "dom"],
  15. "types": [
  16. "@dcloudio/types",
  17. "@types/wechat-miniprogram",
  18. "@uni-helper/uni-app-types",
  19. "@uni-helper/uni-ui-types",
  20. "@uni-helper/uni-cloud-types"
  21. ]
  22. },
  23. "vueCompilerOptions": {
  24. "nativeTags": ["block", "template", "component", "slot"]
  25. },
  26. "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
  27. }