我是否需要在 react-native 项目中保留 .watchmanconfig 文件

Do I need to keep .watchmanconfig file in react-native project

默认的 React Native 项目生成 .watchmanconfig 文件,它只是空对象 {},我可以安全地删除它吗?

一个子问题是:有没有我可以做/参考的守望者配置来以某种方式改善 react-native 项目体验?

.watchmanconfig可以安全删除

如果 Watchman 没有找到相对于您的 root 目录的 .watchmanconfig,那么它将简单地加载 /etc/watchman.json 中存在的 watchman configuration全局配置。

您不需要提供 Watchman 配置,除非您的 project files 变得非常大 here

希望对您有所帮助!