Açıklama Yok

tsconfig.json 474B

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