tsconfig.base.json 881 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "compilerOptions": {
  3. "target": "es2020",
  4. "module": "esnext",
  5. "jsx": "preserve",
  6. "sourceMap": true,
  7. "removeComments": true,
  8. "noEmit": true,
  9. "importHelpers": true,
  10. "strict": true,
  11. "moduleResolution": "node",
  12. "allowSyntheticDefaultImports": true,
  13. "baseUrl": ".",
  14. "paths": {
  15. "@mobile/*": ["app/frontend/apps/mobile/*"],
  16. "@shared/*": ["app/frontend/shared/*"],
  17. "@tests/*": ["app/frontend/tests/*"],
  18. "@stories/*": ["app/frontend/stories/*"],
  19. "@cy/*": [".cypress/*"],
  20. "@/*": ["app/frontend/*"]
  21. },
  22. "types": [
  23. "vite/client",
  24. "vite-plugin-svg-icons/client",
  25. "node",
  26. "vite-plugin-pwa/client"
  27. ],
  28. "esModuleInterop": true,
  29. "experimentalDecorators": true,
  30. "skipLibCheck": true,
  31. "forceConsistentCasingInFileNames": true,
  32. "resolveJsonModule": true
  33. }
  34. }