tsconfig.json 563 B

123456789101112131415161718192021
  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": ["@dcloudio/types", "@types/wechat-miniprogram", "@uni-helper/uni-app-types"]
  15. },
  16. "vueCompilerOptions": {
  17. "nativeTags": ["block", "template", "component", "slot"]
  18. },
  19. "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
  20. }