react-native-navigation的迁移库

tsconfig.json 425B

123456789101112131415161718192021222324
  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. "skipLibCheck": true,
  11. "types": [
  12. "jest",
  13. "lodash",
  14. "prop-types",
  15. "react",
  16. "react-native",
  17. "react-test-renderer"
  18. ]
  19. },
  20. "include": [
  21. "./lib/src/**/*"
  22. ]
  23. }