tsconfig.json 755 B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "baseUrl": "./",
  4. "paths": {
  5. "@bam.tech/react-native-image-resizer": ["./src/index"]
  6. },
  7. "allowUnreachableCode": false,
  8. "allowUnusedLabels": false,
  9. "esModuleInterop": true,
  10. "importsNotUsedAsValues": "error",
  11. "forceConsistentCasingInFileNames": true,
  12. "jsx": "react",
  13. "lib": ["esnext"],
  14. "module": "esnext",
  15. "moduleResolution": "node",
  16. "noFallthroughCasesInSwitch": true,
  17. "noImplicitReturns": true,
  18. "noImplicitUseStrict": false,
  19. "noStrictGenericChecks": false,
  20. "noUncheckedIndexedAccess": true,
  21. "noUnusedLocals": true,
  22. "noUnusedParameters": true,
  23. "resolveJsonModule": true,
  24. "skipLibCheck": true,
  25. "strict": true,
  26. "target": "esnext"
  27. }
  28. }