tsconfig.json 739 B

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