tsconfig.app.json 922 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "compilerOptions": {
  3. "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
  4. "target": "ES2022",
  5. "useDefineForClassFields": true,
  6. "lib": [
  7. "ES2022",
  8. "DOM",
  9. "DOM.Iterable"
  10. ],
  11. "types": [
  12. "vitest/globals",
  13. "@testing-library/jest-dom"
  14. ],
  15. "module": "ESNext",
  16. "skipLibCheck": true,
  17. /* Bundler mode */
  18. "moduleResolution": "bundler",
  19. "allowImportingTsExtensions": true,
  20. "isolatedModules": true,
  21. "moduleDetection": "force",
  22. "noEmit": true,
  23. "jsx": "react-jsx",
  24. /* Linting */
  25. "strict": true,
  26. "noFallthroughCasesInSwitch": true,
  27. "noUncheckedSideEffectImports": true,
  28. /* Aliasing */
  29. "baseUrl": ".",
  30. "paths": {
  31. "@/*": [
  32. "src/*"
  33. ],
  34. "@components/*": [
  35. "src/components/*"
  36. ],
  37. "@context/*": [
  38. "src/context/*"
  39. ],
  40. "@shared/*": [
  41. "../src/shared/*"
  42. ],
  43. "@utils/*": [
  44. "src/utils/*"
  45. ]
  46. }
  47. },
  48. "include": [
  49. "src"
  50. ]
  51. }