Ingen beskrivning

tsconfig.json 576B

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