react-native-webview.git

tsconfig.json 509B

123456789101112131415161718192021
  1. {
  2. "compilerOptions": {
  3. "allowSyntheticDefaultImports": true,
  4. "esModuleInterop": true,
  5. "jsx": "react-native",
  6. "lib": ["es6"],
  7. "module": "esnext",
  8. "moduleResolution": "node",
  9. "noEmit": true,
  10. "noFallthroughCasesInSwitch": true,
  11. "noImplicitReturns": true,
  12. "noUnusedLocals": true,
  13. "noUnusedParameters": true,
  14. "pretty": true,
  15. "skipLibCheck": true,
  16. "strict": true
  17. },
  18. "include": ["src", "./typings.d.ts", "types", "test"],
  19. "exclude": ["node_modules"]
  20. }