tsconfig.json 429 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "allowJs": true,
  4. "allowSyntheticDefaultImports": true,
  5. "esModuleInterop": true,
  6. "isolatedModules": true,
  7. "jsx": "react",
  8. "lib": ["es6"],
  9. "moduleResolution": "node",
  10. "noEmit": true,
  11. "strict": true,
  12. "target": "esnext"
  13. },
  14. "exclude": [
  15. "node_modules",
  16. "babel.config.js",
  17. "metro.config.js",
  18. "jest.config.js"
  19. ]
  20. }