tsconfig.json 869 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "compilerOptions": {
  3. "baseUrl": "./",
  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. "@/*": ["src/*"],
  24. "@common/*": ["src/common/*"],
  25. "@components/*": ["src/components/*"],
  26. "@business-components/*": ["src/business-components/*"],
  27. "@store/*": ["src/store/*"],
  28. "@views/*": ["src/views/*"],
  29. }
  30. },
  31. "include": [
  32. "src/**/*.ts",
  33. "src/**/*.d.ts",
  34. "src/**/*.tsx",
  35. "src/**/*.vue",
  36. "tests/**/*.ts",
  37. "tests/**/*.tsx", ],
  38. "exclude": [
  39. "node_modules",
  40. "dist"
  41. ]
  42. }