tsconfig.base.json 961 B

1234567891011121314151617181920212223242526272829303132333435
  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. "baseUrl": ".",
  13. "paths": {
  14. "@mobile/*": ["app/frontend/apps/mobile/*"],
  15. "@shared/*": ["app/frontend/shared/*"],
  16. "@tests/*": ["app/frontend/tests/*"],
  17. "@stories/*": ["app/frontend/stories/*"],
  18. "@cy/*": [".cypress/*"],
  19. "@/*": ["app/frontend/*"],
  20. "react": [".storybook/config/types__react"],
  21. "@storybook/vue3": [".storybook/node_modules/@storybook/vue3"]
  22. },
  23. "types": [
  24. "vite/client",
  25. "vite-plugin-svg-icons/client",
  26. "node",
  27. "vite-plugin-glob/client"
  28. ],
  29. "esModuleInterop": true,
  30. "experimentalDecorators": true,
  31. "skipLibCheck": true,
  32. "forceConsistentCasingInFileNames": true,
  33. "resolveJsonModule": true
  34. }
  35. }