tsconfig.json 672 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "useDefineForClassFields": true,
  5. "module": "nodenext",
  6. "moduleResolution": "nodenext",
  7. "lib": [
  8. "ESNext",
  9. "DOM"
  10. ],
  11. "jsx": "preserve",
  12. "esModuleInterop": true,
  13. "skipLibCheck": true,
  14. "sourceMap": true,
  15. "baseUrl": "./",
  16. "ignoreDeprecations": "6.0",
  17. "paths": {
  18. "@/*": [
  19. "src/*"
  20. ]
  21. },
  22. "types": [
  23. "vite/client"
  24. ]
  25. },
  26. "include": [
  27. "src/**/*.ts",
  28. "src/**/*.d.ts",
  29. "src/**/*.tsx",
  30. "src/**/*.vue",
  31. "env.d.ts",
  32. "./auto-imports.d.ts"
  33. ],
  34. "references": [
  35. {
  36. "path": "./tsconfig.node.json"
  37. }
  38. ]
  39. }