tsconfig.json 805 B

1234567891011121314151617181920212223242526272829303132
  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. "@ttou/uv-typings/shim",
  22. "@ttou/uv-typings/v3"
  23. ]
  24. },
  25. "vueCompilerOptions": {
  26. "target": 3,
  27. "nativeTags": ["block", "template", "component", "slot"]
  28. },
  29. "exclude": ["node_modules"],
  30. "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "src/**/*.json"]
  31. }