react-native-navigation的迁移库

tsconfig.json 419B

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