📜  nx 指定依赖项 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:27             🧑  作者: Mango

代码示例1
/* 
implicitDependencies

Nx uses powerful source-code analysis to figure out your 
workspace's project graph. Some dependencies cannot
be deduced statically, so you can set them manually like this:
*/


{
  "name": "mylib",
  "nx": {
    "implicitDependencies": ["anotherlib"]
  }
}