react-native-webview.git

tsconfig.json 584B

1234567891011121314151617181920212223242526272829
  1. {
  2. "compilerOptions": {
  3. "allowSyntheticDefaultImports": true,
  4. "esModuleInterop": true,
  5. "jsx": "react-native",
  6. "module": "esnext",
  7. "moduleResolution": "node",
  8. "noEmit": true,
  9. "noFallthroughCasesInSwitch": true,
  10. "noImplicitAny": true,
  11. "noImplicitReturns": true,
  12. "noImplicitThis": true,
  13. "noUnusedLocals": true,
  14. "noUnusedParameters": true,
  15. "pretty": true,
  16. "skipLibCheck": true,
  17. "strict": true,
  18. },
  19. "include": [
  20. "src",
  21. "./typings.d.ts",
  22. "types",
  23. "test"
  24. ],
  25. "exclude": [
  26. "node_modules",
  27. "dist"
  28. ]
  29. }