tsconfig.json 493 B

12345678910111213141516171819202122
  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. "extends": "expo/tsconfig.base",
  15. "include": ["src/**/*", "./App.tsx" , "./declarations.d.ts"],
  16. "exclude": [
  17. "node_modules",
  18. "babel.config.js",
  19. "metro.config.js",
  20. "jest.config.js"
  21. ]
  22. }