tsconfig.base.json 813 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "useDefineForClassFields": true,
  5. "module": "ESNext",
  6. "lib": ["ES2020", "DOM", "DOM.Iterable"],
  7. "skipLibCheck": true,
  8. /* Bundler mode */
  9. "moduleResolution": "bundler",
  10. "allowImportingTsExtensions": true,
  11. "resolveJsonModule": true,
  12. "isolatedModules": true,
  13. "noEmit": true,
  14. /* Linting */
  15. "strict": true,
  16. "noUnusedLocals": true,
  17. "noUnusedParameters": true,
  18. "noFallthroughCasesInSwitch": true,
  19. /* Path aliases */
  20. "baseUrl": ".",
  21. "paths": {
  22. "@smartcut/types": ["packages/types/src"],
  23. "@smartcut/api-client": ["packages/api-client/src"],
  24. "@smartcut/shared-utils": ["packages/shared-utils/src"],
  25. "@smartcut/shared-components": ["packages/shared-components/src"]
  26. }
  27. }
  28. }