tsconfig.json 621 B

1234567891011121314151617181920212223242526
  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. ]
  20. },
  21. "vueCompilerOptions": {
  22. "nativeTags": ["block", "template", "component", "slot"]
  23. },
  24. "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
  25. }