tsconfig.json 751 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "extends": "@vue/tsconfig/tsconfig.json",
  3. "compilerOptions": {
  4. "allowJs": true,
  5. "sourceMap": true,
  6. "baseUrl": ".",
  7. "paths": {
  8. "@/*": [
  9. "./src/*"
  10. ]
  11. },
  12. "lib": [
  13. "esnext",
  14. "dom"
  15. ],
  16. "types": [
  17. "@dcloudio/types",
  18. // "miniprogram-api-typings",
  19. // // "@uni-helper/uni-app-types"
  20. // "@uni-helper/uni--types"
  21. ]
  22. },
  23. "vueCompilerOptions": {
  24. // experimentalRuntimeMode 已废弃,现调整为 nativeTags,请升级 Volar 插件至最新版本
  25. // "nativeTags": [
  26. // "block",
  27. // "component",
  28. // "template",
  29. // "slot"
  30. // ]
  31. },
  32. "include": [
  33. "src/**/*.ts",
  34. "src/**/*.d.ts",
  35. "src/**/*.tsx",
  36. "src/**/*.vue"
  37. ]
  38. }