tsconfig.json 717 B

123456789101112131415161718192021222324252627
  1. {
  2. "compilerOptions": {
  3. "rootDir": ".",
  4. "paths": {
  5. "@compdfkit_pdf_sdk/react_native": ["./src/index"]
  6. },
  7. "allowUnreachableCode": false,
  8. "allowUnusedLabels": false,
  9. "esModuleInterop": true,
  10. "forceConsistentCasingInFileNames": true,
  11. "jsx": "react-native",
  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. }
  27. }