react-native-navigation的迁移库

tsconfig.json 597B

123456789101112131415161718192021222324252627282930
  1. {
  2. "extends": "./tsconfig-strict.json",
  3. "compilerOptions": {
  4. "outDir": "./lib/dist",
  5. "allowJs": false,
  6. "target": "esnext",
  7. "module": "commonjs",
  8. "jsx": "react-native",
  9. "declaration": true,
  10. "esModuleInterop": true,
  11. "skipLibCheck": true,
  12. "types": [
  13. "jest",
  14. "lodash",
  15. "react",
  16. "react-native",
  17. "react-test-renderer"
  18. ],
  19. "baseUrl": ".",
  20. "paths": {
  21. "react-native-navigation": ["lib/src/"],
  22. "react-native-navigation/*": ["lib/src/*"]
  23. }
  24. },
  25. "include": [
  26. "./lib/src/**/*",
  27. "./playground/**/*"
  28. ]
  29. }