tsconfig.json 806 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. "@store/*": ["src/store/*"],
  27. "@views/*": ["src/views/*"],
  28. }
  29. },
  30. "include": [
  31. "src/**/*.ts",
  32. "src/**/*.d.ts",
  33. "src/**/*.tsx",
  34. "src/**/*.vue",
  35. "tests/**/*.ts",
  36. "tests/**/*.tsx", ],
  37. "exclude": [
  38. "node_modules",
  39. "dist"
  40. ]
  41. }