tsconfig.json 467 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "files": [],
  3. "references": [
  4. {
  5. "path": "./tsconfig.node.json"
  6. },
  7. {
  8. "path": "./tsconfig.app.json"
  9. },
  10. {
  11. "path": "./tsconfig.vitest.json"
  12. }
  13. ],
  14. "compilerOptions": {
  15. "module": "NodeNext",
  16. "baseUrl": "src",
  17. "paths": {
  18. "@components/*": [
  19. "src/components/*"
  20. ],
  21. "@/*": [
  22. "src/*"
  23. ]
  24. }
  25. },
  26. "include": [
  27. "src/**/*.ts",
  28. "src/**/*.d.ts",
  29. "src/**/*.vue"
  30. ]
  31. }