tsconfig.json 517 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. "baseUrl": "./src",
  14. "paths": {"~/*": ["*"]}
  15. },
  16. "exclude": [
  17. "node_modules",
  18. "babel.config.js",
  19. "metro.config.js",
  20. "jest.config.js"
  21. ]
  22. }