I have enabled the [`import/enforce-node-protocol-usage`](https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/enforce-node-protocol-usage.md) rule as mentioned in [this comment](https://github.com/import-js/eslint-plugin-import/issues/3193#issuecomment-3005628582). After running ESLint, I am encountering the following error of [`import/no-unresolved`](https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-unresolved.md): ```text error Unable to resolve path to module 'node:fs' import/no-unresolved ``` Is this a bug, or is there a configuration step I need to follow to resolve node protocol module imports when using this rule? Any guidance on how to fix this would be appreciated.