跳至主要內容

.flowconfig [include]

.flowconfig 檔案中的 [include] 區段會告訴 Flow 納入指定的檔案或目錄。納入目錄會遞迴納入該目錄下的所有檔案。只要符號連結指向的檔案或目錄也有納入,就會追蹤符號連結。include 區段中的每一行都是要納入的路徑。這些路徑可以是相對於根目錄或絕對路徑,並且支援單星號和雙星號萬用字元。

專案根目錄(放置 .flowconfig 的位置)會自動納入。

例如,如果 /path/to/root/.flowconfig 包含下列 [include] 區段

[include]
../externalFile.js
../externalDir/
../otherProject/*.js
../otherProject/**/coolStuff/

當 Flow 檢查 /path/to/root 中的專案時,它會讀取並監控

  1. /path/to/root/(自動納入)
  2. /path/to/externalFile.js
  3. /path/to/externalDir/
  4. /path/to/otherProject/ 中任何以 .js 結尾的文件
  5. /path/to/otherProject 下任何名為 coolStuff/ 的目錄