tsconfig.json 971 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "compilerOptions": {
  3. "baseUrl": "/website",
  4. "target": "esnext",
  5. "module": "esnext",
  6. "moduleResolution": "node",
  7. "strict": true,
  8. "skipLibCheck": true,
  9. "jsx": "preserve",
  10. "sourceMap": true,
  11. "resolveJsonModule": true,
  12. "esModuleInterop": true,
  13. "noImplicitAny": false,
  14. "lib": [
  15. "esnext",
  16. "dom"
  17. ],
  18. "types": [
  19. "vite/client",
  20. "node"
  21. ],
  22. "paths": {
  23. "@/*": [
  24. "src/*"
  25. ],
  26. "@common/*": [
  27. "src/common/*"
  28. ],
  29. "@components/*": [
  30. "src/components/*"
  31. ],
  32. "@business-components/*": [
  33. "src/business-components/*"
  34. ],
  35. "@store/*": [
  36. "src/store/*"
  37. ],
  38. "@views/*": [
  39. "src/views/*"
  40. ],
  41. }
  42. },
  43. "include": [
  44. "src/**/*.ts",
  45. "src/**/*.d.ts",
  46. "src/**/*.tsx",
  47. "src/**/*.vue",
  48. "tests/**/*.ts",
  49. "tests/**/*.tsx",
  50. ],
  51. "exclude": [
  52. "node_modules",
  53. "dist"
  54. ]
  55. }