tsconfig.json 483 B

12345678910111213141516171819202122232425262728
  1. {
  2. "extends": "@vue/tsconfig/tsconfig.dom.json",
  3. "include": [
  4. "env.d.ts",
  5. "src/**/*",
  6. "src/**/*.vue"
  7. ],
  8. "compilerOptions": {
  9. "module": "ESNext",
  10. "baseUrl": ".",
  11. "paths": {
  12. "@/*": [
  13. "./src/*"
  14. ]
  15. },
  16. "types": [
  17. "element-plus/global",
  18. "unplugin-vue-define-options/macros-global"
  19. ],
  20. "jsx": "preserve",
  21. "moduleResolution": "node"
  22. },
  23. "references": [
  24. {
  25. "path": "./tsconfig.node.json"
  26. }
  27. ]
  28. }