You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
aws-sdk/clients/ssm is not a core module, no. Core modules are only the precise path in the list - in the same way, fs and fs/promises are core modules, but if you try to import fs/something you'll get node_modules/fs/something.
Either way, I'd suggest including the AWS tools in your package.json (i'm aware that's not necessary when deployed) so that locally and in CI, you can track versions.
I added the following line to my .eslintrc to indicate that aws-sdk is a core module
This was working fine until I had to import a submodule of that package:
When this line is in the code I get the following error:
I'd expect "core-modules" to apply to all submodules of that particular module, right?
The text was updated successfully, but these errors were encountered: