react-native-navigation的迁移库

tsconfig.json 451B

123456789101112131415161718192021222324
  1. {
  2. "compilerOptions": {
  3. "outDir": "./lib/dist",
  4. "allowJs": true,
  5. "target": "esnext",
  6. "moduleResolution": "node",
  7. "module": "commonjs",
  8. "jsx": "preserve",
  9. "noEmitOnError": true,
  10. "noImplicitReturns": true,
  11. "noFallthroughCasesInSwitch": true,
  12. "alwaysStrict": true,
  13. "strictNullChecks": true,
  14. "types": [
  15. "react",
  16. "react-native",
  17. "jest"
  18. ]
  19. },
  20. "include": [
  21. "./lib/src/**/*"
  22. ]
  23. }