tsconfig.json 297 B

12345678910111213141516171819
  1. {
  2. "files": [],
  3. "references": [
  4. {
  5. "path": "./tsconfig.node.json"
  6. },
  7. {
  8. "path": "./tsconfig.app.json"
  9. }
  10. ],
  11. "compilerOptions": {
  12. "types": ["vite/client"], // 关键配置:引入Vite类型
  13. "baseUrl": ".",
  14. "paths": {
  15. "@/*": ["src/*"]
  16. }
  17. }
  18. }