tsconfig.json 629 B

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