fix: add ignoredDependencies as a workaround to fix @nx/dependency-checks error

This commit is contained in:
Philip Hsu
2024-07-08 17:50:47 +08:00
parent 0d925d6169
commit ffefd6c6a5

View File

@@ -18,7 +18,12 @@
"files": ["*.json"],
"parser": "jsonc-eslint-parser",
"rules": {
"@nx/dependency-checks": "error"
"@nx/dependency-checks": [
"error",
{
"ignoredDependencies": ["util"]
}
]
}
}
]