Açıklama Yok

tsconfig.json 608B

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