tsconfig.json 720 B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "lib": ["ESNext"],
  4. "baseUrl": ".",
  5. "paths": {
  6. "assets/*": ["src/assets/*"],
  7. "components/*": ["src/components/*"],
  8. "legacy/*": ["src/legacy/*"],
  9. "lib/*": ["src/lib/*"],
  10. "main/*": ["src/main/*"],
  11. "utils/*": ["src/utils/*"],
  12. "shared/*": ["src/shared/*"]
  13. },
  14. "outDir": "./build/",
  15. "sourceMap": true,
  16. "noImplicitAny": true,
  17. "module": "ESNext",
  18. "target": "ESNext",
  19. "jsx": "react-jsx",
  20. "allowJs": true,
  21. "allowSyntheticDefaultImports": true,
  22. "removeComments": true,
  23. "moduleResolution": "Bundler",
  24. "strict": true,
  25. "skipLibCheck": true
  26. },
  27. "exclude": ["node_modules", "build", "jest.config.js"]
  28. }