react-native-navigation的迁移库

tsconfig.json 399B

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