You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 665B

12345678910111213141516171819202122232425
  1. {
  2. "extends": "../tsconfig.base",
  3. "compilerOptions": {
  4. "allowSyntheticDefaultImports": true,
  5. "baseUrl": ".",
  6. "declaration": true,
  7. "declarationMap": true,
  8. "forceConsistentCasingInFileNames": true,
  9. "isolatedModules": true,
  10. "lib": ["dom", "dom.iterable", "es2022"],
  11. "jsx": "react-jsx",
  12. "module": "commonjs",
  13. "noEmit": true,
  14. "paths": {
  15. "~components/*": ["src/components/*"],
  16. "~helpers/*": ["src/helpers/*"],
  17. "~icons/*": ["src/icons/*"],
  18. "~types/*": ["src/types/*"],
  19. "~utils/*": ["src/utils/*"]
  20. },
  21. "resolveJsonModule": true,
  22. "skipLibCheck": true
  23. },
  24. "include": ["./src/**/*"]
  25. }