No Description

tsconfig.json 522B

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